summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsuyambu.rm <suyambu.rm@samsung.com>2015-07-28 19:40:25 +0530
committersuyambu.rm <suyambu.rm@samsung.com>2015-07-28 20:01:26 +0530
commit705a610dc057c3d8964922750b930e1022288a0b (patch)
tree18a75e10b1842a79a6aae8ae565fe4151223c5b3
parent5e67a6f721eaedda61300baf0799199c7771ebd0 (diff)
downloadcairo-705a610dc057c3d8964922750b930e1022288a0b.tar.gz
cairo-705a610dc057c3d8964922750b930e1022288a0b.tar.bz2
cairo-705a610dc057c3d8964922750b930e1022288a0b.zip
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 <suyambu.rm@samsung.com>
-rw-r--r--configure.ac6
1 files 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"