summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorLeon Krause <lk@leonkrause.com>2018-01-25 09:07:07 +0100
committerLeon Krause <lk@leonkrause.com>2018-01-25 09:07:07 +0100
commit4a3aaaf27666d6eed2cf3bf41e1adddfdedb2dfc (patch)
treed33435237394771029c5e35f76b46c581e82ebf5 /platform
parent59e83af201af5a93c7a13750d781c050c2275c07 (diff)
Disable OpenSSL module in HTML5 platform by default
Diffstat (limited to 'platform')
-rw-r--r--platform/javascript/detect.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py
index 8c7a904bca..74d6536343 100644
--- a/platform/javascript/detect.py
+++ b/platform/javascript/detect.py
@@ -28,6 +28,11 @@ def get_flags():
return [
('tools', False),
('module_theora_enabled', False),
+ # Disabling the OpenSSL module noticeably 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),
]