From: curt Date: Sun, 25 Oct 1998 10:54:30 +0000 (+0000) Subject: Added initial (Linux) joystick support. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=314342e46a95f00201a8fe55acb76274ac023cf4;p=flightgear.git Added initial (Linux) joystick support. --- diff --git a/NEWS b/NEWS index a2a1dc489..1849e8d22 100644 --- a/NEWS +++ b/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/ diff --git a/configure.in b/configure.in index 727fe91fc..3d26e1071 100644 --- a/configure.in +++ b/configure.in @@ -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"