1
0
Fork 0

Added initial (Linux) joystick support.

This commit is contained in:
curt 1998-10-25 10:54:30 +00:00
parent 770e656207
commit 314342e46a
2 changed files with 10 additions and 1 deletions

5
NEWS
View file

@ -1,3 +1,8 @@
New in 0.56
* Added some initial joystick support using Steve's joystick interface class.
This works great under Linux, but Steve's class now needs to be ported to
Windoze and other platforms.
New in 0.55 New in 0.55
* New version of gpc (generic polygon clipping library) from * New version of gpc (generic polygon clipping library) from
http://www.cs.man.ac.uk/aig/staff/alan/software/ http://www.cs.man.ac.uk/aig/staff/alan/software/

View file

@ -6,7 +6,7 @@ dnl
AC_INIT(Simulator/Aircraft/aircraft.cxx) AC_INIT(Simulator/Aircraft/aircraft.cxx)
dnl Initialize the automake stuff dnl Initialize the automake stuff
AM_INIT_AUTOMAKE(FlightGear, 0.55) AM_INIT_AUTOMAKE(FlightGear, 0.56)
dnl Checks for programs. dnl Checks for programs.
AC_PROG_MAKE_SET AC_PROG_MAKE_SET
@ -79,6 +79,10 @@ AM_CONDITIONAL(ENABLE_IRIX_AUDIO, test -r /usr/include/audio.h)
AM_CONDITIONAL(ENABLE_WIN32_AUDIO, test "x$ac_cv_header_windows_h" = "xyes") AM_CONDITIONAL(ENABLE_WIN32_AUDIO, test "x$ac_cv_header_windows_h" = "xyes")
dnl Check for (currently Linux only style) joystick support
AM_CONDITIONAL(ENABLE_JOYSTICK_SUPPORT, \
test -r /usr/include/linux/joystick.h )
dnl extra library and include directories dnl extra library and include directories
EXTRA_DIRS="/usr/local /usr/X11R6 /opt/X11R6" EXTRA_DIRS="/usr/local /usr/X11R6 /opt/X11R6"