summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-04-04 15:42:26 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-04-04 15:43:04 -0400
commita4588933a0c57cb32001d69633cdc0929a555677 (patch)
treee3090265680da61ccc80af81a8b56c3544efff3b
parent4b7141fc13fcb7d420a9fa890309e9f719b2c8bb (diff)
downloadenlightenment-a4588933a0c57cb32001d69633cdc0929a555677.tar.gz
disable xwayland module if exe cannot be found during configure
should probably make this a --flag at some point fix T3415
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c43651468d..f1dec7cbac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -772,6 +772,9 @@ define([CHECK_MODULE_XWAYLAND],
if test "x${have_wayland}" = "xyes"; then
AC_E_CHECK_PKG(XWAYLAND, [ ecore-x >= ${efl_version} ecore-audio >= ${efl_version} ], [HAVE_XWAYLAND_DEPS=true], [HAVE_XWAYLAND_DEPS=false])
AC_PATH_PROG([XWAYLAND_BIN], [Xwayland], [false])
+ if test "x${XWAYLAND_BIN}" = "xfalse"; then
+ HAVE_XWAYLAND_DEPS=false
+ fi
else
HAVE_XWAYLAND_DEPS=false
fi