]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/freerdp: fix build of wayland client
authorYann E. MORIN <yann.morin.1998@free.fr>
Sun, 12 Nov 2017 08:13:26 +0000 (09:13 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Mon, 13 Nov 2017 20:26:16 +0000 (21:26 +0100)
Currently, FreeRDP uses pkg-config to find whether wayland is available.
When it is, it gets the CFLAGS and LDFLAGS and so on from pkg-config,
which is OK.

But I also gets the path to the wayland scanner from pkg-config. And
this points to the target one, when we really need the host one.

So we force-feed the correct path as a configure option.

Furthermore, wayland support needs libxkbcommon, so add this missing
dependency as well.

Fixes:
    http://autobuild.buildroot.org/results/bdfe233ade36a56d0f65ef3c3d1698fca548beed/

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/freerdp/Config.in
package/freerdp/freerdp.mk

index 9dd2505a44309763479153696e3e7ac09936cb65..59bc18b6727a832129c48aa1b06a39e91f50d792 100644 (file)
@@ -81,6 +81,7 @@ config BR2_PACKAGE_FREERDP_CLIENT_WL
        bool "wayland client"
        default y
        depends on BR2_PACKAGE_WAYLAND
+       select BR2_PACKAGE_LIBXKBCOMMON
 
 endif
 
index 458bd5eea7f0c476adb8049c5c09e7b20ea6eba9..69a89a190cded8a5a7ec4f6ad4ca9030d9e01981 100644 (file)
@@ -199,8 +199,10 @@ FREERDP_CONF_OPTS += -DWITH_XV=OFF
 endif
 
 ifeq ($(BR2_PACKAGE_WAYLAND),y)
-FREERDP_DEPENDENCIES += wayland
-FREERDP_CONF_OPTS += -DWITH_WAYLAND=ON
+FREERDP_DEPENDENCIES += wayland libxkbcommon
+FREERDP_CONF_OPTS += \
+       -DWITH_WAYLAND=ON \
+       -DWAYLAND_SCANNER=$(HOST_DIR)/bin/wayland-scanner
 else
 FREERDP_CONF_OPTS += -DWITH_WAYLAND=OFF
 endif