summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-10-12 14:31:42 +0000
committerDarkvater <Darkvater@openttd.org>2006-10-12 14:31:42 +0000
commitd76c0e2dc89ccde306e9ba17de7302a5d8e9bf64 (patch)
treed60c043de35b94778f9be8b60b5514b2aee8d2a5
parent0ca42cbd44ca67600cf0e9d7fedbe3773684bab2 (diff)
downloadopenttd-d76c0e2dc89ccde306e9ba17de7302a5d8e9bf64.tar.xz
(svn r6751) -Fix: Add option to enable/disable network support. Default is on
-rwxr-xr-xconfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index bcc52d992..05301d805 100755
--- a/configure
+++ b/configure
@@ -33,6 +33,7 @@ function showhelp() {
echo " sdl Do you want SDL-support? [yes]"
echo " png Do you want PNG-support? [yes]"
echo " iconv Do you want iconv-support? [no]"
+ echo " network Do you want network-support? [yes]"
echo " cocoa Do you want cocoa-support? (MacOSX) [no]"
echo ""
echo "Params used to configure external libs:"
@@ -171,6 +172,12 @@ do
--with-cocoa)
PARAM="$PARAM WITH_COCOA=1"
;;
+ --with-network)
+ PARAM="$PARAM WITH_NETWORK=1"
+ ;;
+ --without-network)
+ PARAM="$PARAM WITH_NETWORK="
+ ;;
--without-cocoa)
PARAM="$PARAM WITH_COCOA="
;;