Parcourir la source

Disabled mbedtls module in javascript platform

Fabio Alessandrelli il y a 7 ans
Parent
commit
9e2b1b3b00
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      platform/javascript/detect.py

+ 2 - 2
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),
     ]