diff options
author | Ned Deily <nad@python.org> | 2016-03-08 06:09:08 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-03-08 06:09:08 (GMT) |
commit | f4d97ce1008e2f27c9b9ca636434d35d42098a2c (patch) | |
tree | 458f7892dd7327579ffc4a4b3bf1de23e46fdaad | |
parent | bec699e40d7e68d4039d2c1a352dcdb1661e77ef (diff) | |
download | cpython-f4d97ce1008e2f27c9b9ca636434d35d42098a2c.zip cpython-f4d97ce1008e2f27c9b9ca636434d35d42098a2c.tar.gz cpython-f4d97ce1008e2f27c9b9ca636434d35d42098a2c.tar.bz2 |
Issue #26465: Update OS X installer build to use OpenSSL 1.0.2g.
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 6 | ||||
-rw-r--r-- | Misc/NEWS | 6 |
2 files changed, 7 insertions, 5 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 9177356b..4e15f2d 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -242,9 +242,9 @@ def library_recipes(): result.extend([ dict( - name="OpenSSL 1.0.2f", - url="https://www.openssl.org/source/openssl-1.0.2f.tar.gz", - checksum='b3bf73f507172be9292ea2a8c28b659d', + name="OpenSSL 1.0.2g", + url="https://www.openssl.org/source/openssl-1.0.2g.tar.gz", + checksum='f3c710c045cdee5fd114feb69feba7aa', patches=[ "openssl_sdk_makedepend.patch", ], @@ -305,8 +305,10 @@ Build - Issue #25696: Fix installation of Python on UNIX with make -j9. -- Issue #26268: Update OS X 10.5 installer and Windows builds to use - OpenSSL 1.0.2f. +- Issue #26465: Update OS X 10.5+ 32-bit-only installer to build + and link with OpenSSL 1.0.2g. + +- Issue #26268: Update Windows builds to use OpenSSL 1.0.2f. - Issue #25136: Support Apple Xcode 7's new textual SDK stub libraries. |