From 3ad934b7c2d6cc3bca476aeed0661f2816fbe261 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 4 Apr 2016 15:42:26 -0400 Subject: [PATCH] disable xwayland module if exe cannot be found during configure should probably make this a --flag at some point fix T3415 --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 677c14c3b..7c37eca98 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