From 9f9563e3ad0eef8c01077c884f7e7c8448fc56cf Mon Sep 17 00:00:00 2001 From: Lexi Date: Sun, 14 Aug 2011 07:17:50 +0100 Subject: [PATCH] Fiddled with the MacBuild configure scripts to set the deployment target to 10.5 Still need to include instructions on compiling pygame for 10.5 but CBAAAAAA --- MacBuild/configure_python.sh | 4 ++-- MacBuild/configure_sip.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MacBuild/configure_python.sh b/MacBuild/configure_python.sh index aa17831..3ecb051 100755 --- a/MacBuild/configure_python.sh +++ b/MacBuild/configure_python.sh @@ -10,7 +10,7 @@ then exit 1 fi cd python -if [! -d python ] +if [ ! -d python ] then echo "Rename your python folder to python." exit 1 @@ -19,5 +19,5 @@ if [ -e makefile ] then make clean fi -./configure --enable-framework --enable-universalsdk=/ --with-universal-archs=intel MACOSX_DEPLOYMENT_TARGET=10.6 +./configure --enable-framework --enable-universalsdk=/ --with-universal-archs=intel MACOSX_DEPLOYMENT_TARGET=10.5 echo "---~ Done ~---" diff --git a/MacBuild/configure_sip.sh b/MacBuild/configure_sip.sh index a7ea1c5..e8b66a1 100755 --- a/MacBuild/configure_sip.sh +++ b/MacBuild/configure_sip.sh @@ -16,6 +16,6 @@ then make clean fi python configure.py --arch=i386 --arch=x86_64 \ - --universal --deployment-target=10.6 \ + --universal --deployment-target=10.5 \ --destdir=/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/ echo "---~ Done ~---"