summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2007-12-27 15:05:46 +0000
committerbjarni <bjarni@openttd.org>2007-12-27 15:05:46 +0000
commit2ecb31ae3fa65881352a14577e755446bb691b97 (patch)
tree6cdc75d42e8785bd79a56b9ca1ed008d12fb7963 /config.lib
parent6e1cae5256805f56bdb071a5ec5a296f45be9ce1 (diff)
downloadopenttd-2ecb31ae3fa65881352a14577e755446bb691b97.tar.xz
(svn r11709) -Fix [FS#1385 FS#1386]: [OSX] Compiles on Leopard with the default settings
-Change: [OSX] configure will no longer enable static by default Turns out that Leopard can't handle static builds without the user installing extra libs The tradeoff is that now people might have to enable static manually if moving the binary around
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.lib b/config.lib
index 5785c5308..46630338f 100644
--- a/config.lib
+++ b/config.lib
@@ -395,7 +395,7 @@ check_params() {
detect_cputype
if [ "$enable_static" = "1" ]; then
- if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "MORPHOS" ] || [ "$os" = "OSX" ]; then
+ if [ "$os" = "MINGW" ] || [ "$os" = "CYGWIN" ] || [ "$os" = "MORPHOS" ]; then
enable_static="2"
else
enable_static="0"