summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-08-25 20:09:23 +0900
committerSimon Lees <sflees@suse.de>2016-08-25 20:50:34 +0930
commitd8ad2d501d98497319739a67334f430af3e6fa76 (patch)
tree72bf8a92e8e4b53532a30966f44d542ff9bb604d
parent15266135e897091c3c9dc339cea104aee04592c7 (diff)
downloadefl-d8ad2d501d98497319739a67334f430af3e6fa76.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 1c07afe2c8..102c90a2d3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2113,7 +2113,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],