]> git.mxchange.org Git - flightgear.git/commitdiff
Fix a nasty NetworkOLK/MultiPlayer configure problem
authorehofman <ehofman>
Fri, 21 Mar 2003 09:57:38 +0000 (09:57 +0000)
committerehofman <ehofman>
Fri, 21 Mar 2003 09:57:38 +0000 (09:57 +0000)
configure.ac

index 7bbdbe8af8331fe7db3e81ef8e345f65c6f1b2ba..6afa6088ff0041fd3a0fd1f83634d6da43ea432a 100644 (file)
@@ -57,30 +57,27 @@ if test "x$with_logging" = "xno" ; then
     AC_DEFINE([FG_NDEBUG], 1, [Define for no logging output])
 fi
 
-# Specify if we want to build with default Multiplayer support
+# Specify if we want to build with Multiplayer support
 # default to with_network=yes
 AC_ARG_WITH(multiplayer, [  --with-multiplayer      Include default multiplayer support])
-if test "x$with_multiplayer" = "xno" ; then
-    echo "Building without default multiplayer support"
-else
-    echo "Building with default multiplayer support"
-    AC_DEFINE([FG_MPLAYER_AS], 1, [Define to build with default multiplayer support])
-fi
-AM_CONDITIONAL(ENABLE_MPLAYER_AS, test "x$with_multiplayer" != "xno")
+AC_ARG_WITH(network_olk, [  --with-network-olk      Include Oliver's multi-pilot networking support [default=no]])
 
+if test "x$with_multiplayer" = "xno" -a "x$with_network_olk" = "xno"; then
+  echo "Building without any kind of multiplayer support"
+
+elif test "x$with_multiplayer" = "xno"; then
+# echo "Building without default multiplayer support"
+  echo "Building with Oliver's multi-pilot network support"
+  AC_DEFINE([FG_NETWORK_OLK], 1, [Define to build with Oliver's networking])
 
-# Specify if we want to build with Oliver's networking support
-# default to with_network=yes
-NETWORK_DIRS=Network
-AC_ARG_WITH(network_olk, [  --with-network-olk      Include Oliver's multi-pilot networking support [default=no]])
-if test "x$with_network_olk" = "xno" ; then
-    echo "Building without Oliver's multi-pilot network support"
 else
-    echo "Building with Oliver's multi-pilot network support"
-    AC_DEFINE([FG_NETWORK_OLK], 1, [Define to build with Oliver's networking])
+  echo "Building with default multiplayer support"
+# echo "Building without Oliver's multi-pilot network support"
+  AC_DEFINE([FG_MPLAYER_AS], 1, [Define to build with default multiplayer support])
 fi
-AM_CONDITIONAL(ENABLE_NETWORK_OLK, test "x$with_network_olk" != "xno" -a "x$with_multiplayer" = "xno")
 
+AM_CONDITIONAL(ENABLE_NETWORK_OLK, test "x$with_network_olk" != "xno")
+AM_CONDITIONAL(ENABLE_MPLAYER_AS, test "x$with_multiplayer" != "xno")
 
 
 # Specify if we want to use WeatherCM instead of FGEnvironment.