1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 20:55:20 +03:00
aports/testing/micropython/no_ssl.patch
2023-10-07 09:26:29 +00:00

18 lines
575 B
Diff

--- micropython-1.12-orig/ports/unix/mpconfigport.mk
+++ micropython-1.12/ports/unix/mpconfigport.mk
@@ -24,13 +24,13 @@
MICROPY_PY_FFI = 1
# ssl module requires one of the TLS libraries below
-MICROPY_PY_SSL = 1
+MICROPY_PY_SSL = 0
# axTLS has minimal size but implements only a subset of modern TLS
# functionality, so may have problems with some servers.
MICROPY_SSL_AXTLS = 0
# mbedTLS is more up to date and complete implementation, but also
# more bloated.
-MICROPY_SSL_MBEDTLS = 1
+MICROPY_SSL_MBEDTLS = 0
# jni module requires JVM/JNI
MICROPY_PY_JNI = 0