changeset: 96794:bbf4e35ed69e branch: 3.5 parent: 96784:ebc8559b2e57 parent: 96793:4b52fce3753d user: Ned Deily date: Fri Jul 03 23:43:22 2015 -0700 files: Mac/BuildScript/build-installer.py Misc/NEWS description: Issue #24432: Update OS X 10.5+ installer builds to use OpenSSL 1.0.2c. diff -r ebc8559b2e57 -r bbf4e35ed69e Mac/BuildScript/build-installer.py --- a/Mac/BuildScript/build-installer.py Fri Jul 03 15:16:37 2015 -0700 +++ b/Mac/BuildScript/build-installer.py Fri Jul 03 23:43:22 2015 -0700 @@ -237,9 +237,9 @@ result.extend([ dict( - name="OpenSSL 1.0.2a", - url="https://www.openssl.org/source/openssl-1.0.2a.tar.gz", - checksum='a06c547dac9044161a477211049f60ef', + name="OpenSSL 1.0.2c", + url="https://www.openssl.org/source/openssl-1.0.2c.tar.gz", + checksum='8c8d81a9ae7005276e486702edbcd4b6', patches=[ "openssl_sdk_makedepend.patch", ], diff -r ebc8559b2e57 -r bbf4e35ed69e Mac/BuildScript/openssl_sdk_makedepend.patch --- a/Mac/BuildScript/openssl_sdk_makedepend.patch Fri Jul 03 15:16:37 2015 -0700 +++ b/Mac/BuildScript/openssl_sdk_makedepend.patch Fri Jul 03 23:43:22 2015 -0700 @@ -2,7 +2,7 @@ # Parent 25a9af415e8c3faf591c360d5f0e361d049b2b43 # openssl_sdk_makedepend.patch # -# using openssl 1.0.2a +# using openssl 1.0.2c # # - support building with an OS X SDK # - allow "make depend" to use compilers with names other than "gcc" diff -r ebc8559b2e57 -r bbf4e35ed69e Misc/NEWS --- a/Misc/NEWS Fri Jul 03 15:16:37 2015 -0700 +++ b/Misc/NEWS Fri Jul 03 23:43:22 2015 -0700 @@ -103,7 +103,8 @@ Build ----- -- Issue #24432: Update Windows builds to use OpenSSL 1.0.2c. +- Issue #24432: Update Windows builds and OS X 10.5 installer to use OpenSSL + 1.0.2c. What's New in Python 3.5.0 beta 2?