From 72ad116fe0e771ef4e4bc373f0ef7b0295155e2e Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 16 Nov 1998 13:55:52 +0000 Subject: [PATCH] Added a conditional to check for serial port support. --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index d442da4fb..1bd788dfc 100644 --- a/configure.in +++ b/configure.in @@ -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") dnl Check for (currently Linux only style) joystick support - 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 EXTRA_DIRS="/usr/local /usr/X11R6 /opt/X11R6" @@ -294,6 +296,7 @@ AC_OUTPUT( \ Simulator/Makefile \ Simulator/Objects/Makefile \ Simulator/Scenery/Makefile \ + Simulator/Serial/Makefile \ Simulator/Time/Makefile \ Simulator/Weather/Makefile \ Tools/Makefile \