Changeset - r22520:1b883a714ffd
[Not reviewed]
master
0 1 0
michi_cc - 8 years ago 2017-01-08 17:00:18
michi_cc@openttd.org
(svn r27727) -Fix(-or-not) [FS#6295]: [OSX] Out-of-the-box compilation on newer OSX versions (dunn).
1 file changed with 0 insertions and 17 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -1608,29 +1608,12 @@ make_cflags_and_ldflags() {
 

	
 
		if [ "$enable_universal" = "0" ]; then
 
			# Universal builds set this elsewhere
 
			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
 
		LIBS="$LIBS -lmidi -lbe"
 
	fi
 

	
0 comments (0 inline, 0 general)