1
0
Fork 0

Added a conditional to check for serial port support.

This commit is contained in:
curt 1998-11-16 13:55:52 +00:00
parent 35b96f914e
commit 72ad116fe0

View file

@ -89,9 +89,11 @@ 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 dnl Check for (currently Linux only style) joystick support
AM_CONDITIONAL(ENABLE_LINUX_JOYSTICK, test -r /usr/include/linux/joystick.h ) AM_CONDITIONAL(ENABLE_LINUX_JOYSTICK, test -r /usr/include/linux/joystick.h )
dnl Enable serial support on Unix type systems
AM_CONDITIONAL(ENABLE_UNIX_SERIAL, test "x$ac_cv_header_windows_h" != "xyes")
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"
@ -294,6 +296,7 @@ AC_OUTPUT( \
Simulator/Makefile \ Simulator/Makefile \
Simulator/Objects/Makefile \ Simulator/Objects/Makefile \
Simulator/Scenery/Makefile \ Simulator/Scenery/Makefile \
Simulator/Serial/Makefile \
Simulator/Time/Makefile \ Simulator/Time/Makefile \
Simulator/Weather/Makefile \ Simulator/Weather/Makefile \
Tools/Makefile \ Tools/Makefile \