summaryrefslogtreecommitdiffstats
path: root/Mac/BuildScript/build-installer.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2023-06-05 15:41:51 (GMT)
committerGitHub <noreply@github.com>2023-06-05 15:41:51 (GMT)
commite15de14c16ce98e773c31607bd70ee911e4ac073 (patch)
tree6f6a14d4d18bfc89562913345a3062a99caf35ac /Mac/BuildScript/build-installer.py
parentc9bf00b1ad440077b28143693025bcba0d90f26e (diff)
downloadcpython-e15de14c16ce98e773c31607bd70ee911e4ac073.zip
cpython-e15de14c16ce98e773c31607bd70ee911e4ac073.tar.gz
cpython-e15de14c16ce98e773c31607bd70ee911e4ac073.tar.bz2
[3.9] gh-103142: Upgrade binary builds and CI to OpenSSL 1.1.1u (GH-105174) (GH-105200) (#105205)
Upgrade builds to OpenSSL 1.1.1u. Also updates _ssl_data_111.h from OpenSSL 1.1.1u, _ssl_data_300.h from 3.0.9. Manual edits to the _ssl_data_300.h file prevent it from removing any existing definitions in case those exist in some peoples builds and were important (avoiding regressions during backporting). (cherry picked from commit ede89af) Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Mac/BuildScript/build-installer.py')
-rwxr-xr-xMac/BuildScript/build-installer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index 9a9237c..a752c73 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -244,9 +244,9 @@ def library_recipes():
result.extend([
dict(
- name="OpenSSL 1.1.1t",
- url="https://www.openssl.org/source/openssl-1.1.1t.tar.gz",
- checksum='1cfee919e0eac6be62c88c5ae8bcd91e',
+ name="OpenSSL 1.1.1u",
+ url="https://www.openssl.org/source/openssl-1.1.1u.tar.gz",
+ checksum='72f7ba7395f0f0652783ba1089aa0dcc',
buildrecipe=build_universal_openssl,
configure=None,
install=None,