Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Jack Jansen
On 30-dec-04, at 21:01, Bob Ippolito wrote: On Dec 30, 2004, at 2:52 PM, Ronald Oussoren wrote: On 30-dec-04, at 18:49, Bob Ippolito wrote: On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simp

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Bob Ippolito
On Dec 30, 2004, at 2:52 PM, Ronald Oussoren wrote: On 30-dec-04, at 18:49, Bob Ippolito wrote: On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler wi

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Ronald Oussoren
On 30-dec-04, at 18:49, Bob Ippolito wrote: On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler with the right environment variables: run-cc: #!

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Bob Ippolito
On Dec 30, 2004, at 11:44 AM, Jack Jansen wrote: On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler with the right environment variables: run-cc: #!/bin/sh env MACOSX_DEPLOYMENT_TARGET=10.

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Jack Jansen
On 30-dec-04, at 10:02, Ronald Oussoren wrote: In the quick-and-dirty-hacks category: you could write two simple shell-scripts that start the compiler with the right environment variables: run-cc: #!/bin/sh env MACOSX_DEPLOYMENT_TARGET=10.3 gcc "[EMAIL PROTECTED]" run-c++: #!/bin

Re: [Pythonmac-SIG] The PantherPythonFix installer and C++ extensions

2004-12-30 Thread Ronald Oussoren
On 30-dec-04, at 0:25, Jack Jansen wrote: On 29-dec-04, at 11:40, Bob Ippolito wrote: [Bob notes that my PantherPythonFix installer will break C++ compilation because distutils simply replaces the first component of LDSHARED with "c++"] Any suggestions as to what to do to get c++ compilation fixe