From 7b5ec6ce301b21619495b45cbc6b7f69b41f8317 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Thu, 25 Aug 2016 20:09:23 +0900 Subject: [PATCH] configure: Enable elput if wayland is requested This makes ./configure --enable-wayland work without having to specify --enable-elput. --- configure.ac | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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],