From 4a3aaaf27666d6eed2cf3bf41e1adddfdedb2dfc Mon Sep 17 00:00:00 2001 From: Leon Krause Date: Thu, 25 Jan 2018 09:07:07 +0100 Subject: Disable OpenSSL module in HTML5 platform by default --- platform/javascript/detect.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'platform/javascript/detect.py') 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), ] -- cgit v1.2.3