From 9cb1190f0068e4a3c8e1e27272a444e9757a817e Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 2 Jun 2016 12:02:01 +0200 Subject: [PATCH] elementary: add missing dependency on libwayland-client in elm_cnp lib/elementary/.libs/lib_elementary_libelementary_la-elm_cnp.o: In function `wl_data_offer_accept': /usr/include/wayland-client-protocol.h:893: undefined reference to `wl_proxy_marshal' /usr/include/wayland-client-protocol.h:893: undefined reference to `wl_proxy_marshal' collect2: error: ld returned 1 exit status Based on a patch by aerodynamik. Thanks! Fixes T3398 --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index fe5c03bcb1..35a939b275 100644 --- a/configure.ac +++ b/configure.ac @@ -5409,6 +5409,8 @@ EFL_OPTIONAL_INTERNAL_DEPEND_PKG([ELEMENTARY], [${build_ecore_evas_win32}], [eco EFL_OPTIONAL_INTERNAL_DEPEND_PKG([ELEMENTARY], [${want_drm}], [ecore_drm2]) EFL_OPTIONAL_INTERNAL_DEPEND_PKG([ELEMENTARY], [${build_ecore_evas_wayland}], [ecore_wl2]) +EFL_OPTIONAL_DEPEND_PKG([ELEMENTARY], [${want_wayland}], [WAYLAND], [wayland-client]) + dnl Special case deps for ecore_drm if test "${want_drm}" = "yes"; then EFL_DEPEND_PKG([ELEMENTARY], [DRM], [libdrm])