Skip to content

Commit

Permalink
Switch Android to OpenSSL 1.1.1d
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkspirit committed Feb 12, 2020
1 parent 21112a1 commit ad9ee36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions etc/ci/check_dynamic_symbols.py
Expand Up @@ -32,6 +32,7 @@
b'sigemptyset',
b'AHardwareBuffer_allocate',
b'AHardwareBuffer_release',
b'getentropy',
])
actual_symbols = set()

Expand Down
4 changes: 2 additions & 2 deletions python/servo/build_commands.py
Expand Up @@ -331,7 +331,7 @@ def build(self, release=False, dev=False, jobs=None, params=None, media_stack=No
android_arch = self.config["android"]["arch"]

# Build OpenSSL for android
env["OPENSSL_VERSION"] = "1.0.2k"
env["OPENSSL_VERSION"] = "1.1.1d"
make_cmd = ["make"]
if jobs is not None:
make_cmd += ["-j" + jobs]
Expand Down Expand Up @@ -580,7 +580,7 @@ def build(self, release=False, dev=False, jobs=None, params=None, media_stack=No

# The Open SSL configuration
env.setdefault("OPENSSL_DIR", path.join(target_path, target, "native", "openssl"))
env.setdefault("OPENSSL_VERSION", "1.0.2k")
env.setdefault("OPENSSL_VERSION", "1.1.1d")
env.setdefault("OPENSSL_STATIC", "1")

# GStreamer configuration
Expand Down

0 comments on commit ad9ee36

Please sign in to comment.