Mercurial > sdl-ios-xcode
comparison configure.in @ 211:0cc95f442f3a
If we're looking at the /dev/input event devices, and we found
at least one, then we don't want to look at the input joystick
devices, since they're built on top of devices that we've already
seen, so we're done.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 22 Oct 2001 21:34:50 +0000 |
parents | ec77d3d32201 |
children | 5e8f81418e30 |
comparison
equal
deleted
inserted
replaced
210:582abf60e21e | 211:0cc95f442f3a |
---|---|
928 dnl See if we can use the new unified event interface in Linux 2.4 | 928 dnl See if we can use the new unified event interface in Linux 2.4 |
929 CheckInputEvents() | 929 CheckInputEvents() |
930 { | 930 { |
931 dnl Check for Linux 2.4 unified input event interface support | 931 dnl Check for Linux 2.4 unified input event interface support |
932 AC_ARG_ENABLE(input-events, | 932 AC_ARG_ENABLE(input-events, |
933 [ --enable-input-events use Linux 2.4 unified input interface [default=no]], | 933 [ --enable-input-events use Linux 2.4 unified input interface [default=yes]], |
934 , enable_input_events=no) | 934 , enable_input_events=yes) |
935 if test x$enable_input_events = xyes; then | 935 if test x$enable_input_events = xyes; then |
936 AC_MSG_CHECKING(for Linux 2.4 unified input interface) | 936 AC_MSG_CHECKING(for Linux 2.4 unified input interface) |
937 use_input_events=no | 937 use_input_events=no |
938 AC_TRY_COMPILE([ | 938 AC_TRY_COMPILE([ |
939 #include <linux/input.h> | 939 #include <linux/input.h> |