diff options
author | Chase Douglas <chase.douglas@canonical.com> | 2012-01-19 13:05:47 -0800 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2012-01-26 15:48:37 +1000 |
commit | 56d32619b95eb472104068c35ea7146dccb8d1bf (patch) | |
tree | 50b90584a75859b8edc5ddd9db83d477d81606fc /configure.ac | |
parent | 7ef9150d832d6ede991c5def02d2964c8047ad4f (diff) |
Add touch device class support
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bb95403..f8c7259 100644 --- a/configure.ac +++ b/configure.ac @@ -64,6 +64,11 @@ AC_SUBST([sdkdir]) DRIVER_NAME=synaptics AC_SUBST([DRIVER_NAME]) +PKG_CHECK_MODULES(XI22, [inputproto >= 2.1.99.3] [xorg-server >= 1.11.99.901], HAVE_XI22="yes", HAVE_XI22="no") +if test "x$HAVE_XI22" = xyes; then + AC_DEFINE(HAVE_MULTITOUCH, 1, [XI2.2 available]) +fi + # ----------------------------------------------------------------------------- # Configuration options # ----------------------------------------------------------------------------- |