diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-26 02:12:11 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-26 02:12:11 +0300 |
commit | f5d63bcd2387b988aa546d6cd42bc48499e505d4 (patch) | |
tree | ad73f4b0c1371c8d28a63b8bded4375e122360aa | |
parent | 2ea019f3d3238e1a0a0b84481037e1b93f6c7dcf (diff) | |
download | micropython-f5d63bcd2387b988aa546d6cd42bc48499e505d4.tar.gz micropython-f5d63bcd2387b988aa546d6cd42bc48499e505d4.zip |
unix: Enable "ussl" module.
ussl was in testing mode for 8 months, and now enabled in other ports
(e.g. esp8266), so time for unix port to catch up.
-rw-r--r-- | unix/mpconfigport.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/mpconfigport.mk b/unix/mpconfigport.mk index 1b2b5231bc..4744172da7 100644 --- a/unix/mpconfigport.mk +++ b/unix/mpconfigport.mk @@ -22,7 +22,7 @@ MICROPY_PY_SOCKET = 1 MICROPY_PY_FFI = 1 # ussl module requires axtls -MICROPY_PY_USSL = 0 +MICROPY_PY_USSL = 1 # jni module requires JVM/JNI MICROPY_PY_JNI = 0 |