summaryrefslogtreecommitdiff
path: root/platform/javascript/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2018-02-14 08:00:47 +0100
committerGitHub <noreply@github.com>2018-02-14 08:00:47 +0100
commitac5cce5e9513eba34745f7e1e90c320ec92390f9 (patch)
tree0ccca56f5fbc3fde1bc00ee72e272b842329c62f /platform/javascript/detect.py
parente7351ecdf5f14f1b6a8733f91fd90646406d77a5 (diff)
parentbd3c27ba7862d50b1bf54733e9f890f7084a9ea5 (diff)
Merge pull request #16519 from Faless/mbedtls
Replace OpenSSL with mbedTLS
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r--platform/javascript/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py
index 74d6536343..7e6a1518ed 100644
--- a/platform/javascript/detect.py
+++ b/platform/javascript/detect.py
@@ -28,11 +28,11 @@ def get_flags():
return [
('tools', False),
('module_theora_enabled', False),
- # Disabling the OpenSSL module noticeably reduces file size.
+ # Disabling the mbedtls module reduces file size.
# The module has little use due to the limited networking functionality
# in this platform. For the available networking methods, the browser
# manages TLS.
- ('module_openssl_enabled', False),
+ ('module_mbedtls_enabled', False),
]