From: Ned Deily Date: Sat, 4 Jul 2015 06:32:44 +0000 (-0700) Subject: Issue #24432: Update OS X 10.5+ installer builds to use OpenSSL 1.0.2c. X-Git-Tag: v2.7.11rc1~255^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14f233e64ada4e5007c75bc08fcb4c612bdbeba8;p=thirdparty%2FPython%2Fcpython.git Issue #24432: Update OS X 10.5+ installer builds to use OpenSSL 1.0.2c. --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 872828967ea9..7fe5512af58e 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -237,9 +237,9 @@ def library_recipes(): 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 --git a/Mac/BuildScript/openssl_sdk_makedepend.patch b/Mac/BuildScript/openssl_sdk_makedepend.patch index 5903afdbff1d..74d712115bd1 100644 --- a/Mac/BuildScript/openssl_sdk_makedepend.patch +++ b/Mac/BuildScript/openssl_sdk_makedepend.patch @@ -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 --git a/Misc/NEWS b/Misc/NEWS index 01537d4cfef3..8b238113f882 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -95,8 +95,8 @@ Library 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. IDLE ----