summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2015-02-06 14:13:30 +1100
committerNed Deily <nad@acm.org>2015-02-06 14:13:30 +1100
commit4b1e477063b53803e7ae4e5189ef7c0a3e3ae429 (patch)
tree111fd740d83f6f62ad1bce2c0cff214767867ad7
parent9462e831517f496437e5c8095802e960d62b68e8 (diff)
downloadcpython-4b1e477063b53803e7ae4e5189ef7c0a3e3ae429.tar.gz
Issue #23212: Update OS X installer build OpenSSL to 1.0.1l.
(currently only used for builds with <= 10.5 deployment targets)
-rwxr-xr-xMac/BuildScript/build-installer.py6
-rw-r--r--Misc/NEWS2
2 files changed, 4 insertions, 4 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 379cb959f1..16576d5792 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.1k",
- url="https://www.openssl.org/source/openssl-1.0.1k.tar.gz",
- checksum='d4f002bd22a56881340105028842ae1f',
+ name="OpenSSL 1.0.1l",
+ url="https://www.openssl.org/source/openssl-1.0.1l.tar.gz",
+ checksum='cdb22925fc9bc97ccbf1e007661f2aa6',
patches=[
"openssl_sdk_makedepend.patch",
],
diff --git a/Misc/NEWS b/Misc/NEWS
index 3667c2a83f..2a874169d7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -361,7 +361,7 @@ Build
- Issue #17219: Add library build dir for Python extension cross-builds.
-- Issue #17128: Use private version of OpenSSL for 2.7.9 OS X 10.5+ installer.
+- Issue #17128: Use private version of OpenSSL for 3.4.3 OS X 10.5+ installer.
C API
-----