build: Disable tslib by default
authorEmmanuele Bassi <ebassi@linux.intel.com>
Wed, 2 Nov 2011 13:17:27 +0000 (13:17 +0000)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Thu, 3 Nov 2011 13:45:21 +0000 (13:45 +0000)
The event handling through tslib hasn't been tested in a while, and it
hasn't been ported to the device manager machinery either. We are still
considering whether or not it should be entirely removed, since evdev is
supposed to be a better way to handle events not coming from an existing
windowing system.

configure.ac

index 4ef3bcd..be0849d 100644 (file)
@@ -322,17 +322,17 @@ AS_IF([test "x$enable_egl" = "xyes"],
                          [])
 
         AC_ARG_WITH([tslib],
-                    [AS_HELP_STRING([--with-tslib=@<:@yes/no@:>@], [Use TSLib for events])],
+                    [AS_HELP_STRING([--with-tslib=@<:@yes/no@:>@], [Use TSLib for events (default=no)])],
                     [],
-                    [with_tslib=yes])
+                    [with_tslib=no])
 
         AC_ARG_WITH([evdev],
-                    [AS_HELP_STRING([--with-evdev=@<:@yes/no@:>@], [Use evdev for events])],
+                    [AS_HELP_STRING([--with-evdev=@<:@yes/no@:>@], [Use evdev for events (default=yes)])],
                     [],
                     [with_evdev=yes])
 
         AC_ARG_WITH([gdl],
-                    [AS_HELP_STRING([--with-gdl=@<:@yes/no@:>@], [Use libgdl for CE3100/CE4100 support])],
+                    [AS_HELP_STRING([--with-gdl=@<:@yes/no@:>@], [Use libgdl for CE3100/CE4100 support (default=no)])],
                     [],
                     [with_gdl=no])