summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Naour <romain.naour@gmail.com>2016-08-20 20:45:49 +0200
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-08-22 11:08:36 -0400
commit70125b9cff35a006c66c026c95f447c9852728ce (patch)
tree12eb2d6591ef78574254d7b85a40f3d2e42e9a9e
parent287e9637a8d8e0306a3f2e3c26f91a70c75cf3fa (diff)
downloadenlightenment-70125b9cff35a006c66c026c95f447c9852728ce.tar.gz
configure.ac: wayland only build fix
When only wayland is enabled, the build system is still looking for ecore-x. When the following test is always true since have_wayland_only has been initialed to "no". if test "x${have_wayland_only}" != "xyes"; then PKG_CHECK_MODULES([ECORE_X], [ecore-x >= ${efl_version}]) Use e_cv_want_wayland_only instead. Signed-off-by: Romain Naour <romain.naour@gmail.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 132a3b716e..ec14351ec7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -704,7 +704,7 @@ fi
AM_CONDITIONAL([HAVE_WAYLAND], [test "x${have_wayland}" = "xyes"])
AM_CONDITIONAL([HAVE_WAYLAND_EGL], [test "x${have_wayland_egl}" = "xyes"])
-if test "x${have_wayland_only}" != "xyes"; then
+if test "x${e_cv_want_wayland_only}" != "xyes"; then
PKG_CHECK_MODULES([ECORE_X], [ecore-x >= ${efl_version}])
if test -n "$ECORE_X_CFLAGS" ; then
ecore_x=true