From 4c3917d90476c8b77a64c903c71a9503172e37ca Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 20 Sep 2009 04:13:23 +0000 Subject: [PATCH] Oh yeah, need this option for PPC as well now. --- build-scripts/fatbuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-scripts/fatbuild.sh b/build-scripts/fatbuild.sh index 51888bd4e..b75e2906f 100755 --- a/build-scripts/fatbuild.sh +++ b/build-scripts/fatbuild.sh @@ -17,7 +17,7 @@ CONFIG_PPC="--build=`uname -p`-apple-darwin --host=powerpc-apple-darwin \ # PowerPC 32-bit compiler flags CC_PPC="gcc-4.0 -arch ppc" CXX_PPC="g++-4.0 -arch ppc" -CFLAGS_PPC="" +CFLAGS_PPC="-mmacosx-version-min=10.4" CPPFLAGS_PPC="-DMAC_OS_X_VERSION_MIN_REQUIRED=1040 \ -nostdinc \ -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks \ @@ -38,7 +38,7 @@ CONFIG_PPC64="--build=`uname -p`-apple-darwin --host=powerpc-apple-darwin \ # PowerPC 64-bit compiler flags CC_PPC64="gcc-4.0 -arch ppc64" CXX_PPC64="g++-4.0 -arch ppc64" -CFLAGS_PPC64="" +CFLAGS_PPC64="-mmacosx-version-min=10.5" CPPFLAGS_PPC64="-DMAC_OS_X_VERSION_MIN_REQUIRED=1050 \ -nostdinc \ -F/Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks \