Added initial (Linux) joystick support.
This commit is contained in:
parent
770e656207
commit
314342e46a
2 changed files with 10 additions and 1 deletions
5
NEWS
5
NEWS
|
@ -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 version of gpc (generic polygon clipping library) from
|
||||
http://www.cs.man.ac.uk/aig/staff/alan/software/
|
||||
|
|
|
@ -6,7 +6,7 @@ dnl
|
|||
AC_INIT(Simulator/Aircraft/aircraft.cxx)
|
||||
|
||||
dnl Initialize the automake stuff
|
||||
AM_INIT_AUTOMAKE(FlightGear, 0.55)
|
||||
AM_INIT_AUTOMAKE(FlightGear, 0.56)
|
||||
|
||||
dnl Checks for programs.
|
||||
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")
|
||||
|
||||
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
|
||||
EXTRA_DIRS="/usr/local /usr/X11R6 /opt/X11R6"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue