diff options
author | Chris Michael <cp.michael@samsung.com> | 2014-03-17 13:49:51 +0000 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2014-03-18 07:43:05 +0000 |
commit | b18b67ee927c65debc174a99dd94f74fc3029192 (patch) | |
tree | 780cdb05d12657a9e52603ea38e250eb6b34059c /configure.ac | |
parent | f3da55758608f4618fb29ba07a2face461f40397 (diff) | |
download | enlightenment-b18b67ee927c65debc174a99dd94f74fc3029192.tar.gz |
@bugfix: Build the wayland desktop shell module if we are Either
building for wayland clients, or building for wayland-only
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d43c7a0afc..6c27aa9bad 100644 --- a/configure.ac +++ b/configure.ac @@ -845,7 +845,7 @@ fi define([CHECK_MODULE_WL_DESKTOP_SHELL], [ - if test "x${have_wayland_clients}" = "xyes"; then + if test "x${have_wayland_clients}" = "xyes" || test "x${e_cv_want_wayland_only}" = "xyes"; then AC_E_CHECK_PKG(WL_DESKTOP_SHELL, [ ecore >= $efl_version eina >= $efl_version ], [WL_DESKTOP_SHELL=true], [WL_DESKTOP_SHELL=false]) else WL_DESKTOP_SHELL=false |