Commit b21d935d authored by Sam Lantinga's avatar Sam Lantinga

Disabled /dev/event joystick interface by default

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4052
parent a4fc83d5
......@@ -37,13 +37,13 @@ AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
dnl Setup for automake
AM_INIT_AUTOMAKE(SDL, $SDL_VERSION)
dnl Detect the canonical host and target build environment
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
dnl Setup for automake
AM_INIT_AUTOMAKE(SDL, $SDL_VERSION)
dnl Check for tools
AC_LIBTOOL_WIN32_DLL
......@@ -801,8 +801,8 @@ CheckInputEvents()
{
dnl Check for Linux 2.4 unified input event interface support
AC_ARG_ENABLE(input-events,
[ --enable-input-events use Linux 2.4 unified input interface [default=yes]],
, enable_input_events=yes)
[ --enable-input-events use Linux 2.4 unified input interface [default=no]],
, enable_input_events=no)
if test x$enable_input_events = xyes; then
AC_MSG_CHECKING(for Linux 2.4 unified input interface)
use_input_events=no
......
......@@ -16,6 +16,7 @@ be found at the <A HREF="http://www.libsdl.org/"> main SDL page</A>.
Major changes since SDL 1.0.0:
</H2>
<UL>
<LI> 1.2.1: Disabled /dev/event joystick interface by default
<LI> 1.2.1: Added initial support for Quartz video (thanks Darrell!)
<LI> 1.2.1: Added native OpenBSD audio driver (thanks vedge!)
<LI> 1.2.1: Added detection of Open Sound System on Solaris x86
......
This diff is collapsed.
This diff is collapsed.
......@@ -3,12 +3,14 @@ AC_INIT(README)
dnl Setup for automake
SDL_VERSION=1.2.0
AM_INIT_AUTOMAKE(SDL_tests, $SDL_VERSION)
dnl Detect the canonical host and target build environment
AC_CANONICAL_HOST
AC_CANONICAL_TARGET
dnl Setup for automake
AM_INIT_AUTOMAKE(SDL_tests, $SDL_VERSION)
dnl Check for tools
AC_PROG_CC
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment