summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2011-04-28 16:16:56 +0200
committerHenrik Rydberg <rydberg@euromail.se>2011-04-28 18:43:14 +0200
commit8d80a4768a2fb4beef81a6cf9ebd93bcd812c8d4 (patch)
tree36fdc183132d539db34c1c3315a9dc3732744e01 /configure.ac
parentcc876e03486f060bd89c41d78a678261f91f871f (diff)
Introduce the grail transform tool
This tool tests the transform capabilities of grail. Similar to a map application, one can use a single finger, two fingers, a whole hand or two hands to move the rectangle around, scale and rotate it. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 99569cc..dad13ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,6 +26,13 @@ PKG_CHECK_MODULES([MTDEV], [mtdev >= 1.1])
26PKG_CHECK_MODULES([EVEMU], [utouch-evemu >= 1.0.5]) 26PKG_CHECK_MODULES([EVEMU], [utouch-evemu >= 1.0.5])
27PKG_CHECK_MODULES([FRAME], [utouch-frame >= 1.0]) 27PKG_CHECK_MODULES([FRAME], [utouch-frame >= 1.0])
28 28
29AC_ARG_WITH([xi], AS_HELP_STRING([--with-xi], [Build with XI2.1 support]))
30AM_CONDITIONAL([HAVE_XI], [test "x$with_xi" != "x"])
31
32AS_IF([test "x$with_xi" = "xyes"], [
33 PKG_CHECK_MODULES(XINPUT, x11 xext [xi >= 1.4.1.99.1] [inputproto >= 2.0.99.1])
34 AC_DEFINE([HAVE_XI], [1], [XI2.1 support])
35])
29# Check for TDD tools 36# Check for TDD tools
30PKG_CHECK_MODULES([CHECK], [check >= 0.9.8], 37PKG_CHECK_MODULES([CHECK], [check >= 0.9.8],
31 [have_check=yes], 38 [have_check=yes],