From: suyambu.rm Date: Tue, 28 Jul 2015 14:10:25 +0000 (+0530) Subject: Fix OBS build error for X11-wearable profile. X-Git-Tag: submit/tizen/20150729.024839~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=705a610dc057c3d8964922750b930e1022288a0b;p=platform%2Fcore%2Fgraphics%2Fcairo.git 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 --- 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"