summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Revest <revestflo@gmail.com>2015-07-27 17:40:13 +0200
committerNicolas Aguirre <aguirre.nicolas@gmail.com>2015-11-17 16:23:02 +0100
commit7dc4be14b689a1d21c46be6d7f80411ec6dbebff (patch)
treec816d50042dd7bb5ef1a6e6cd55667f8c2acffdc
parent82bf1cefa2c1e46f3c7d11ea05596d2923c3d7b7 (diff)
downloadenlightenment-7dc4be14b689a1d21c46be6d7f80411ec6dbebff.tar.gz
Fixes wayland-only build
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 8e589be57b..009342ddcb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -448,10 +448,10 @@ AM_CONDITIONAL([HAVE_EEZE_MOUNT], [test -n "$eeze_mount"])
have_wayland_only=no
AC_ARG_ENABLE([wayland],
AS_HELP_STRING([--enable-wayland],[enable wayland support in enlightenment @<:@default=disabled@:>@]),
- [e_cv_want_wayland_only=$enableval],
- [e_cv_want_wayland_only=no])
+ [have_wayland_only=$enableval],
+ [have_wayland_only=no])
AC_MSG_CHECKING([whether wayland support is enabled])
-AC_MSG_RESULT([${e_cv_want_wayland_only}])
+AC_MSG_RESULT([${have_wayland_only}])
# doxygen program for documentation building
@@ -744,7 +744,7 @@ AC_MSG_RESULT([${e_cv_want_wayland_egl}])
if test "x${e_cv_want_wayland_only}" != "xno" ;then
PKG_CHECK_MODULES([WAYLAND], [ecore-wayland >= 1.16 wayland-server >= 1.8.0 wayland-client >= 1.8.0 xkbcommon uuid],
[
- have_wayland_only=yes
+ have_wayland=yes
AC_DEFINE_UNQUOTED([HAVE_WAYLAND],[1],[enable wayland support])
])
else