summaryrefslogtreecommitdiffstats
path: root/Mac/OSX/fixapplepython23.py
Commit message (Collapse)AuthorAgeFilesLines
* Whitespace normalization.Tim Peters2005-01-071-7/+6
|
* Create the wrapper scripts for gcc/g++ too.Jack Jansen2005-01-011-26/+50
|
* Just passing -undefined dynamic_lookup isn't enough: we also need to setJack Jansen2004-12-281-1/+1
| | | | | | the MACOSX_DEPLOYMENT_TARGET environment variable to 10.3 when calling the loader. And we do this with "env" because distutils apparently doesn't understand environment variable assignments before command names.
* A script to fix Apple-installed Python 2.3 (and a test whether the userJack Jansen2004-12-261-0/+95
needs to run it in the Makefile). After installing a newer framework Python the apple-installed Python can no longer build extension modules, because they will inadvertantly be linked against the newer framework. This script modifies lib/config/Makefile so it will link extensions with "-undefined dynamic_lookup", which forestalls this problem. Will backport to 2.4 and 2.3.