This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author srid
Recipients ned.deily, ronaldoussoren, srid
Date 2010-06-24.22:19:47
SpamBayes Score 0.018172657
Marked as misclassified No
Message-id <1277417990.58.0.634665794983.issue9045@psf.upfronthosting.co.za>
In-reply-to
Content
We can make this work on OSX 10.6 atleast, using Apple's system Tcl/Tk 8.5.

1. Get a 10.6 build machine with 10.5 SDK

2. Modify setup.py to use openssl 0.9.7 (*not* 0.9.8):

  search_for_ssl_incs_in=['/Developer/SDKs/MacOSX10.5.sdk/usr/include/'] 
  [...]
  s/ libraries = ['ssl', 'crypto'] / 
     libraries = ['ssl.0.9.7', 'crypto.0.9.7'] /g
  
3. Run ./configure with MACOSX_DEPLOYMENT_TARGET=10.5 env variable

Catch: 10.5 users will have to install Tcl/Tk manually (eg: ActiveTcl 8.5) and run IDLE with "arch -i386 idle2.7"
History
Date User Action Args
2010-06-24 22:19:50sridsetrecipients: + srid, ronaldoussoren, ned.deily
2010-06-24 22:19:50sridsetmessageid: <1277417990.58.0.634665794983.issue9045@psf.upfronthosting.co.za>
2010-06-24 22:19:48sridlinkissue9045 messages
2010-06-24 22:19:47sridcreate