summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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],