discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e66ef6bb5a21e2ca05f2d6ddb3d965376c5d2bf8
commit e66ef6bb5a21e2ca05f2d6ddb3d965376c5d2bf8 Author: Romain Naour <romain.na...@gmail.com> Date: Sat Aug 20 20:45:49 2016 +0200 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.na...@gmail.com> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 14897e2..d8db158 100644 --- a/configure.ac +++ b/configure.ac @@ -700,7 +700,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 --