From: Emmanuele Bassi Date: Wed, 2 Nov 2011 13:17:27 +0000 (+0000) Subject: build: Disable tslib by default X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9110fa1ee7821523b7e3b47743846b1e20dbc33c;p=profile%2Fivi%2Fclutter.git build: Disable tslib by default 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. --- diff --git a/configure.ac b/configure.ac index 4ef3bcd..be0849d 100644 --- a/configure.ac +++ b/configure.ac @@ -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])