Mercurial > sdl-ios-xcode
comparison configure.in @ 51:fba28d77901f
Disabled /dev/event joystick interface by default
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Sun, 10 Jun 2001 04:54:53 +0000 |
parents | 45b1c4303f87 |
children | 25dfe480c75e |
comparison
equal
deleted
inserted
replaced
50:eda2f15ffb70 | 51:fba28d77901f |
---|---|
35 AC_SUBST(LT_RELEASE) | 35 AC_SUBST(LT_RELEASE) |
36 AC_SUBST(LT_CURRENT) | 36 AC_SUBST(LT_CURRENT) |
37 AC_SUBST(LT_REVISION) | 37 AC_SUBST(LT_REVISION) |
38 AC_SUBST(LT_AGE) | 38 AC_SUBST(LT_AGE) |
39 | 39 |
40 dnl Setup for automake | |
41 AM_INIT_AUTOMAKE(SDL, $SDL_VERSION) | |
42 | |
43 dnl Detect the canonical host and target build environment | 40 dnl Detect the canonical host and target build environment |
44 AC_CANONICAL_HOST | 41 AC_CANONICAL_HOST |
45 AC_CANONICAL_TARGET | 42 AC_CANONICAL_TARGET |
43 | |
44 dnl Setup for automake | |
45 AM_INIT_AUTOMAKE(SDL, $SDL_VERSION) | |
46 | 46 |
47 dnl Check for tools | 47 dnl Check for tools |
48 | 48 |
49 AC_LIBTOOL_WIN32_DLL | 49 AC_LIBTOOL_WIN32_DLL |
50 AM_PROG_LIBTOOL | 50 AM_PROG_LIBTOOL |
799 dnl See if we can use the new unified event interface in Linux 2.4 | 799 dnl See if we can use the new unified event interface in Linux 2.4 |
800 CheckInputEvents() | 800 CheckInputEvents() |
801 { | 801 { |
802 dnl Check for Linux 2.4 unified input event interface support | 802 dnl Check for Linux 2.4 unified input event interface support |
803 AC_ARG_ENABLE(input-events, | 803 AC_ARG_ENABLE(input-events, |
804 [ --enable-input-events use Linux 2.4 unified input interface [default=yes]], | 804 [ --enable-input-events use Linux 2.4 unified input interface [default=no]], |
805 , enable_input_events=yes) | 805 , enable_input_events=no) |
806 if test x$enable_input_events = xyes; then | 806 if test x$enable_input_events = xyes; then |
807 AC_MSG_CHECKING(for Linux 2.4 unified input interface) | 807 AC_MSG_CHECKING(for Linux 2.4 unified input interface) |
808 use_input_events=no | 808 use_input_events=no |
809 AC_TRY_COMPILE([ | 809 AC_TRY_COMPILE([ |
810 #include <linux/input.h> | 810 #include <linux/input.h> |