diff options
author | Darkvater <Darkvater@openttd.org> | 2006-10-12 14:31:42 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-10-12 14:31:42 +0000 |
commit | d76c0e2dc89ccde306e9ba17de7302a5d8e9bf64 (patch) | |
tree | d60c043de35b94778f9be8b60b5514b2aee8d2a5 | |
parent | 0ca42cbd44ca67600cf0e9d7fedbe3773684bab2 (diff) | |
download | openttd-d76c0e2dc89ccde306e9ba17de7302a5d8e9bf64.tar.xz |
(svn r6751) -Fix: Add option to enable/disable network support. Default is on
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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=" ;; |