From a50a45ebbf927060685e080b28aa2c7ed1812fdb Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Fri, 23 Jan 2015 13:09:45 -0800 Subject: [PATCH] configure.ac: Clarify libinput requirement weston 1.6.1 builds against libinput 0.6 or 0.7 only currently. Signed-off-by: Bryce Harrington Reviewed-by: Derek Foreman --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 05e883dad..e69b6b4dc 100644 --- a/configure.ac +++ b/configure.ac @@ -160,7 +160,7 @@ AC_ARG_ENABLE(libinput-backend, [ --disable-libinput-backend],, AM_CONDITIONAL([ENABLE_LIBINPUT_BACKEND], [test x$enable_libinput_backend = xyes]) if test x$enable_libinput_backend = xyes; then AC_DEFINE([BUILD_LIBINPUT_BACKEND], [1], [Build the libinput input device backend]) - PKG_CHECK_MODULES(LIBINPUT_BACKEND, [libinput >= 0.6.0]) + PKG_CHECK_MODULES(LIBINPUT_BACKEND, [libinput >= 0.6.0 libinput < 0.8.0]) fi