diff options
author | stuconnolly <stuart02@gmail.com> | 2013-01-24 20:33:10 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-01-24 20:33:10 +0000 |
commit | 5956ce23cb3e98a14aff79ceb122b47712442953 (patch) | |
tree | 717327059437d142c4fd61c1f5b4ede343b823ed /Frameworks | |
parent | aaba2bec280c6756cd16835ff10bda3fa5dcead2 (diff) | |
download | sequelpro-5956ce23cb3e98a14aff79ceb122b47712442953.tar.gz sequelpro-5956ce23cb3e98a14aff79ceb122b47712442953.tar.bz2 sequelpro-5956ce23cb3e98a14aff79ceb122b47712442953.zip |
PostgresKit: Bump base SDK to be 10.6 and drop PPC support.
Diffstat (limited to 'Frameworks')
-rw-r--r-- | Frameworks/PostgresKit/PostgresKit.xcodeproj/project.pbxproj | 30 | ||||
-rwxr-xr-x | Frameworks/PostgresKit/Scripts/build-libpq.sh | 4 |
2 files changed, 11 insertions, 23 deletions
diff --git a/Frameworks/PostgresKit/PostgresKit.xcodeproj/project.pbxproj b/Frameworks/PostgresKit/PostgresKit.xcodeproj/project.pbxproj index b2cb37cd..10711d65 100644 --- a/Frameworks/PostgresKit/PostgresKit.xcodeproj/project.pbxproj +++ b/Frameworks/PostgresKit/PostgresKit.xcodeproj/project.pbxproj @@ -641,11 +641,7 @@ 17E5952D14F302740054EE08 /* Distribution */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = ( - i386, - ppc, - x86_64, - ); + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "Source/PostgresKit-Prefix.pch"; @@ -655,8 +651,8 @@ INFOPLIST_FILE = Resources/Info.plist; INFOPLIST_PREFIX_HEADER = ""; PREBINDING = NO; - SDKROOT = macosx10.5; - VALID_ARCHS = "i386 ppc x86_64"; + SDKROOT = macosx10.6; + VALID_ARCHS = "i386 x86_64"; }; name = Distribution; }; @@ -807,11 +803,7 @@ 1DEB91B208733DA50010E9CD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = ( - i386, - ppc, - x86_64, - ); + ARCHS = "$(NATIVE_ARCH_ACTUAL)"; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_OPTIMIZATION_LEVEL = 0; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -823,19 +815,15 @@ INFOPLIST_PREFIX_HEADER = ""; ONLY_ACTIVE_ARCH = YES; PREBINDING = NO; - SDKROOT = macosx10.5; - VALID_ARCHS = "i386 ppc x86_64"; + SDKROOT = macosx10.6; + VALID_ARCHS = "i386 x86_64"; }; name = Debug; }; 1DEB91B308733DA50010E9CD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ARCHS = ( - i386, - ppc, - x86_64, - ); + ARCHS = "$(ARCHS_STANDARD_32_64_BIT)"; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "Source/PostgresKit-Prefix.pch"; @@ -845,8 +833,8 @@ INFOPLIST_FILE = Resources/Info.plist; INFOPLIST_PREFIX_HEADER = ""; PREBINDING = NO; - SDKROOT = macosx10.5; - VALID_ARCHS = "i386 ppc x86_64"; + SDKROOT = macosx10.6; + VALID_ARCHS = "i386 x86_64"; }; name = Release; }; diff --git a/Frameworks/PostgresKit/Scripts/build-libpq.sh b/Frameworks/PostgresKit/Scripts/build-libpq.sh index 43e8a48e..dd5f24ec 100755 --- a/Frameworks/PostgresKit/Scripts/build-libpq.sh +++ b/Frameworks/PostgresKit/Scripts/build-libpq.sh @@ -43,8 +43,8 @@ QUIET='NO' CLEAN='NO' # Configuration -MIN_OS_X_VERSION='10.5' -ARCHITECTURES='-arch ppc -arch i386 -arch x86_64' +MIN_OS_X_VERSION='10.6' +ARCHITECTURES='-arch i386 -arch x86_64' CONFIGURE_OPTIONS='--enable-thread-safety --with-openssl' COMMON_COMPILE_OPTIONS="-fno-omit-frame-pointer -fno-exceptions -mmacosx-version-min=${MIN_OS_X_VERSION}" |