summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authormichi_cc <michi_cc@openttd.org>2017-01-08 17:00:18 +0000
committermichi_cc <michi_cc@openttd.org>2017-01-08 17:00:18 +0000
commit8ad28478a38a011f49a907995c0e33addd36e483 (patch)
treebbd71fbf0bf138e77bfe381e1d43c72132c25acd /config.lib
parent1446d916f0bae30081fc761dc81fc16b188f3906 (diff)
downloadopenttd-8ad28478a38a011f49a907995c0e33addd36e483.tar.xz
(svn r27727) -Fix(-or-not) [FS#6295]: [OSX] Out-of-the-box compilation on newer OSX versions (dunn).
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib17
1 files changed, 0 insertions, 17 deletions
diff --git a/config.lib b/config.lib
index 196e908f5..3d10aaa3f 100644
--- a/config.lib
+++ b/config.lib
@@ -1611,23 +1611,6 @@ make_cflags_and_ldflags() {
CFLAGS="$OSX_SYSROOT $CFLAGS"
LDFLAGS="$OSX_LD_SYSROOT $LDFLAGS"
fi
-
- if [ "$enable_universal" = "0" ] && [ $cc_version -gt 400 ]; then
- # Only set the min version when not doing an universal build.
- # Universal builds set the version elsewhere.
- if [ "$cpu_type" = "64" ]; then
- CFLAGS="$CFLAGS -mmacosx-version-min=10.5"
- else
- gcc_cpu=`$cc_host -dumpmachine`
- if [ "`echo $gcc_cpu | cut -c 1-3`" = "ppc" -o "`echo $gcc_cpu | cut -c 1-7`" = "powerpc" ]; then
- # PowerPC build can run on 10.3
- CFLAGS="$CFLAGS -mmacosx-version-min=10.3"
- else
- # Intel is only available starting from 10.4
- CFLAGS="$CFLAGS -mmacosx-version-min=10.4"
- fi
- fi
- fi
fi
if [ "$os" = "BEOS" ] || [ "$os" = "HAIKU" ]; then