[Pythonmac-SIG] Needed change configure to build python on Puma

Steve Spicklemire steve@spvi.com
Sat, 18 Aug 2001 20:43:21 -0500


FYI.. if there are any other folks out there getting Puma, I discovered 
that you need to change  the configure script to get python (unix) to 
build with Apple's updated tools. They've changed default dynamic 
linking a bit (from flat_namespace to "two-level-namespace") anyway.. if 
you just change the line in configure that sets ld's flags for darwin 
from:

-bundle -undefined suppress

to

-flat_namespace -bundle -undefined suppress

it builds again.

take care,
-steve