diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-01-25 09:14:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-25 09:14:50 +0100 |
commit | 8afe5b4d9fa50d807f79006ab457c41e4de83247 (patch) | |
tree | 147bac87b7890866b9e7d1ef8ab8c148c9784194 /platform/javascript/detect.py | |
parent | f2e3825616ce67078159adc3d591e4c6e368983a (diff) | |
parent | 4a3aaaf27666d6eed2cf3bf41e1adddfdedb2dfc (diff) |
Merge pull request #16059 from eska014/html5-notls
Disable OpenSSL module in HTML5 platform by default
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r-- | platform/javascript/detect.py | 5 |
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), ] |