1
0
Fork 0

Changes to support GLUT joystick routines as fall back.

This commit is contained in:
curt 1998-10-27 02:13:59 +00:00
parent 314342e46a
commit 1b6b7a348d

View file

@ -80,8 +80,13 @@ 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 )
# AM_CONDITIONAL(ENABLE_JOYSTICK_SUPPORT, \
# test -r /usr/include/linux/joystick.h \
# -o "x$ac_cv_header_windows_h" = "xyes" )
AM_CONDITIONAL(ENABLE_LINUX_JOYSTICK, test -r /usr/include/linux/joystick.h )
# AM_CONDITIONAL(ENABLE_GLUT_JOYSTICK, "x$ac_cv_header_windows_h" = "xyes" )
dnl extra library and include directories
EXTRA_DIRS="/usr/local /usr/X11R6 /opt/X11R6"