|
@@ -7,8 +7,7 @@
|
|
|
# Changeset on the stable-1.1 branch
|
|
|
FREERDP_VERSION = b21ff842ef3de5837513042dc30488b12bd9cf9d
|
|
|
FREERDP_SITE = $(call github,FreeRDP,FreeRDP,$(FREERDP_VERSION))
|
|
|
-FREERDP_DEPENDENCIES = openssl zlib \
|
|
|
- xlib_libX11 xlib_libXt xlib_libXext xlib_libXcursor
|
|
|
+FREERDP_DEPENDENCIES = openssl zlib
|
|
|
FREERDP_LICENSE = Apache-2.0
|
|
|
FREERDP_LICENSE_FILES = LICENSE
|
|
|
|
|
@@ -49,6 +48,20 @@ else
|
|
|
FREERDP_CONF_OPTS += -DWITH_PULSEAUDIO=OFF
|
|
|
endif
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_XLIB_LIBXEXT),y)
|
|
|
+FREERDP_DEPENDENCIES += xlib_libXext
|
|
|
+FREERDP_CONF_OPTS += -DWITH_X11=ON
|
|
|
+else
|
|
|
+FREERDP_CONF_OPTS += -DWITH_X11=OFF
|
|
|
+endif
|
|
|
+
|
|
|
+ifeq ($(BR2_PACKAGE_XLIB_LIBXCURSOR),y)
|
|
|
+FREERDP_CONF_OPTS += -DWITH_XCURSOR=ON
|
|
|
+FREERDP_DEPENDENCIES += xlib_libXcursor
|
|
|
+else
|
|
|
+FREERDP_CONF_OPTS += -DWITH_XCURSOR=OFF
|
|
|
+endif
|
|
|
+
|
|
|
ifeq ($(BR2_PACKAGE_XLIB_LIBXI),y)
|
|
|
FREERDP_CONF_OPTS += -DWITH_XI=ON
|
|
|
FREERDP_DEPENDENCIES += xlib_libXi
|