diff options
author | swills <swills@FreeBSD.org> | 2018-08-28 02:12:35 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2018-08-28 02:12:35 +0800 |
commit | 12a5a7c98059bde632a00afff65f50fb6af65d12 (patch) | |
tree | 2c9ac756d9ccb22043b6ae19fd20b475d023020d /net | |
parent | cd010b1110f3deb04d3bee5626439c604658b391 (diff) | |
download | freebsd-ports-gnome-12a5a7c98059bde632a00afff65f50fb6af65d12.tar.gz freebsd-ports-gnome-12a5a7c98059bde632a00afff65f50fb6af65d12.tar.zst freebsd-ports-gnome-12a5a7c98059bde632a00afff65f50fb6af65d12.zip |
net/freerdp: Fix build failure
PR: 230954
Submitted by: kevans (maintainer)
Reported by: rozhuk.im@gmail.com
Diffstat (limited to 'net')
-rw-r--r-- | net/freerdp/Makefile | 5 | ||||
-rw-r--r-- | net/freerdp/files/patch-CMakeLists.txt | 14 |
2 files changed, 3 insertions, 16 deletions
diff --git a/net/freerdp/Makefile b/net/freerdp/Makefile index 4f87d6ffcc26..33cadedd803b 100644 --- a/net/freerdp/Makefile +++ b/net/freerdp/Makefile @@ -13,6 +13,8 @@ COMMENT= Free implementation of Remote Desktop Protocol LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim + USES= alias cmake:outsource compiler:c++11-lib cpe gettext localbase pathfix pkgconfig ssl USE_LDCONFIG= yes CPE_VENDOR= freerdp_project @@ -73,8 +75,7 @@ SSE_CMAKE_BOOL= WITH_SSE2 WAYLAND_DESC= Build FreeRDP Wayland client WAYLAND_BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:multimedia/v4l_compat -WAYLAND_LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim \ - libwayland-client.so:graphics/wayland \ +WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland \ libwayland-cursor.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon WAYLAND_CMAKE_BOOL= WITH_WAYLAND diff --git a/net/freerdp/files/patch-CMakeLists.txt b/net/freerdp/files/patch-CMakeLists.txt deleted file mode 100644 index 2766465d4df8..000000000000 --- a/net/freerdp/files/patch-CMakeLists.txt +++ /dev/null @@ -1,14 +0,0 @@ ---- CMakeLists.txt.orig 2016-11-24 13:19:47 UTC -+++ CMakeLists.txt -@@ -156,6 +156,11 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "BSD") - endif() - endif() - -+if(${CMAKE_SYSTEM_NAME} MATCHES "DragonFly") -+ set(BSD TRUE) -+ set(FREEBSD TRUE) -+endif() -+ - # Configure MSVC Runtime - if(MSVC) - include(MSVCRuntime) |