summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-08-25 20:09:23 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2016-08-25 20:10:43 +0900
commit7b5ec6ce301b21619495b45cbc6b7f69b41f8317 (patch)
tree11367343bdb1ff6231c3a8a37257c851138074bb
parente0c1f4a2a7866109c651c956b182d5fe7b33b5d4 (diff)
downloadefl-7b5ec6ce301b21619495b45cbc6b7f69b41f8317.tar.gz
configure: Enable elput if wayland is requested
This makes ./configure --enable-wayland work without having to specify --enable-elput.
-rw-r--r--configure.ac8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a6b7b9968f..2a70edec52 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2119,7 +2119,13 @@ AC_ARG_ENABLE([elput],
want_elput="no"
fi
],
- [want_elput="no"])
+ [
+ if test "x${want_wayland}" = "xyes" ; then
+ want_elput="yes"
+ else
+ want_elput="no"
+ fi
+ ])
# Drm
AC_ARG_ENABLE([drm],