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 ned.deily
Recipients janssen, ned.deily, pitrou, vstinner
Date 2011-07-04.23:04:56
SpamBayes Score 0.00010261631
Marked as misclassified No
Message-id <1309820697.09.0.325565620811.issue12440@psf.upfronthosting.co.za>
In-reply-to
Content
Two problems: (1) on OS X builds, libssl is dynamically linked to _ssl.so so there is a potential disconnect when combining checking versions based on a compile time check (as in _ssl.c) with an execution time check of the actual loaded library (as in test_ssl.py) and (2) in point releases (like 10.6.x), Apple often deliberately does not update the include files for libraries that were released in a major release (like 10.6).  As of 10.6.8, the /usr/include/openssl headers are at 0.9.8l but /usr/lib/libssl0.9.8.dylib is at 0.9.8r.

That said, we will probably need to supply our own libssl for Python installers in the future as there are rumors that Apple has hinted it may no longer supply openssl in the future.
History
Date User Action Args
2011-07-04 23:04:57ned.deilysetrecipients: + ned.deily, janssen, pitrou, vstinner
2011-07-04 23:04:57ned.deilysetmessageid: <1309820697.09.0.325565620811.issue12440@psf.upfronthosting.co.za>
2011-07-04 23:04:56ned.deilylinkissue12440 messages
2011-07-04 23:04:56ned.deilycreate