]> git.mxchange.org Git - flightgear.git/commitdiff
Added initial (Linux) joystick support.
authorcurt <curt>
Sun, 25 Oct 1998 10:54:30 +0000 (10:54 +0000)
committercurt <curt>
Sun, 25 Oct 1998 10:54:30 +0000 (10:54 +0000)
NEWS
configure.in

diff --git a/NEWS b/NEWS
index a2a1dc4893067a223a42eb0aa8c3bf6c03f748a6..1849e8d2269731cba18fc10e594f15e7d9fe19f3 100644 (file)
--- 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/
index 727fe91fc91294bc0f36a4005292587bf3441e35..3d26e10719d8f38417ed7bab1ab9eea8ce6e08d2 100644 (file)
@@ -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"