mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 10:56:27 -04:00
- Enable 64 bit file support in winpr - Remove unneeded patches (added upstream) - Add support for ICU for unicode conversion - Add support for KERBEROS - Add MANPAGES option and fix man pages installation in /usr/local/man - Fix WWW in pkg-descr - Pet portlint Changelog: https://github.com/FreeRDP/FreeRDP/blob/2.0.0-rc1/ChangeLog PR: 224658 Submitted by: cpm Reviewed by: kevans Approved by: kevans (maintainer)
18 lines
402 B
Text
18 lines
402 B
Text
--- winpr/CMakeLists.txt.orig 2017-11-28 14:26:30 UTC
|
|
+++ winpr/CMakeLists.txt
|
|
@@ -180,7 +180,14 @@ if(BUILD_TESTING)
|
|
add_subdirectory(test)
|
|
endif()
|
|
|
|
-install_freerdp_man(wlog.7 7)
|
|
+if(WITH_MANPAGES)
|
|
+ if(BSD)
|
|
+ install(FILES wlog.7 DESTINATION man/man7)
|
|
+ else()
|
|
+ install_freerdp_man(wlog.7 7)
|
|
+ endif()
|
|
+endif(WITH_MANPAGES)
|
|
+
|
|
# Exporting
|
|
|
|
if(${CMAKE_VERSION} VERSION_GREATER "2.8.10")
|