summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryce Harrington <bryce@osg.samsung.com>2015-01-23 13:09:45 -0800
committerBryce Harrington <bryce@osg.samsung.com>2015-01-23 13:09:45 -0800
commita50a45ebbf927060685e080b28aa2c7ed1812fdb (patch)
tree11775ecf0755d80285e98e61f61e60eab103c071
parent88f9d000d1e6046177da884ca8c452acf8554d9a (diff)
configure.ac: Clarify libinput requirement
weston 1.6.1 builds against libinput 0.6 or 0.7 only currently. Signed-off-by: Bryce Harrington <bryce@osg.samsung.com> Reviewed-by: Derek Foreman <derekf@osg.samsung.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 05e883da..e69b6b4d 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