From 705a610dc057c3d8964922750b930e1022288a0b Mon Sep 17 00:00:00 2001 From: "suyambu.rm" Date: Tue, 28 Jul 2015 19:40:25 +0530 Subject: [PATCH] Fix OBS build error for X11-wearable profile. Linking wayland-egl with Cairo creates build errors related to cairo mutex. Change-Id: I672e2976f85a47ac67a5359ae75d742e169c5dc1 Signed-off-by: suyambu.rm --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index bd33aada8..e4a92d4d3 100644 --- a/configure.ac +++ b/configure.ac @@ -54,10 +54,10 @@ AC_CHECK_LIB(wayland-client, wl_display_connect, [AC_CHECK_HEADER(wayland-client.h, [ have_wayland=yes AC_DEFINE(HAVE_WAYLAND, 1, [Define to 1 if you have wayland available]) - wayland_LIBS="-lwayland-client -lwayland-egl" + wayland_LIBS="-lwayland-client" ], - [have_wayland="no (requires wayland-egl)"])], - [have_wayland="no (requires wayland-egl)"]) + [have_wayland="no (requires wayland-client)"])], + [have_wayland="no (requires wayland-client)"]) LIBS="$wayland_LIBS $LIBS" save_LIBS="$LIBS" -- 2.34.1