diff options
author | bjarni <bjarni@openttd.org> | 2004-12-10 13:00:11 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2004-12-10 13:00:11 +0000 |
commit | 1130dec32fb81f97ee0137395eff3da0dac142c1 (patch) | |
tree | 08016630eee71be52e1ed6602cfa81d58cd74227 /Makefile | |
parent | dcafdf5e50da6a91b1c33a21b097d26262edcbe2 (diff) | |
download | openttd-1130dec32fb81f97ee0137395eff3da0dac142c1.tar.xz |
(svn r1003) Mac: reintroduced the static libpng hack in makefile since it appears to be needed in the nightly builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -425,7 +425,12 @@ CFLAGS += `libpng-config --cflags` # seems like older libpng versions are broken and need this PNGCONFIG_FLAGS = --ldflags --libs ifdef STATIC +ifdef OSX +# Seems like we need a tiny hack for OSX static to work +LIBS += `libpng-config --prefix`/lib/libpng.a +else LIBS += `libpng-config --static $(PNGCONFIG_FLAGS)` +endif else LIBS += `libpng-config --L_opts $(PNGCONFIG_FLAGS)` endif |