Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions Mac/BuildScript/build-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ def library_recipes():

result.extend([
dict(
name="OpenSSL 1.0.2o",
url="https://www.openssl.org/source/openssl-1.0.2o.tar.gz",
checksum='44279b8557c3247cbe324e2322ecd114',
name="OpenSSL 1.0.2p",
url="https://www.openssl.org/source/openssl-1.0.2p.tar.gz",
checksum='ac5eb30bf5798aa14b1ae6d0e7da58df',
buildrecipe=build_universal_openssl,
configure=None,
install=None,
Expand Down Expand Up @@ -824,6 +824,13 @@ def build_openssl_arch(archbase, arch):
]
if no_asm:
configure_opts.append("no-asm")
# OpenSSL 1.0.2o broke the Configure test for whether the compiler
# in use supports dependency rule generation (cc -M) with gcc-4.2
# used for the 10.6+ installer builds. Patch Configure here to
# force use of "cc -M" rather than "makedepend".
runCommand(
"""sed -i "" 's|my $cc_as_makedepend = 0|my $cc_as_makedepend = 1|g' Configure""")

runCommand(" ".join(["perl", "Configure"]
+ arch_opts[arch] + configure_opts))
runCommand("make depend")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update to OpenSSL 1.0.2p for macOS installer builds.