summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbjarni <bjarni@openttd.org>2006-03-31 10:04:18 +0000
committerbjarni <bjarni@openttd.org>2006-03-31 10:04:18 +0000
commit5bbf0049365ad01540580182a2a7d851485167b3 (patch)
tree96f450213a6617748595005f55ed39649e2b08f0 /Makefile
parentb34daea3f2f9a1d5d15fbd723a9ff3c13adcfdf2 (diff)
downloadopenttd-5bbf0049365ad01540580182a2a7d851485167b3.tar.xz
(svn r4197) reentered STATIC_ZLIB_PATH (removed in 4183) since it turned out that it's used after all
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f48ad707a..04f0b67b5 100644
--- a/Makefile
+++ b/Makefile
@@ -416,8 +416,17 @@ endif
# zlib config
ifdef WITH_ZLIB
- CDEFS += -DWITH_ZLIB
- LIBS += -lz
+ CDEFS += -DWITH_ZLIB
+ ifdef STATIC
+ ifdef OSX
+ # OSX links dynamically to zlib, even in static builds since it's always present in the system
+ LIBS += -lz
+ else
+ LIBS += $(STATIC_ZLIB_PATH)
+ endif
+ else
+ LIBS += -lz
+ endif
endif
# libpng config