diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-28 00:46:51 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-28 00:48:38 +0300 |
commit | 078504059315c085018d3635823806aac49c2384 (patch) | |
tree | 9253964b0106e204e9472aaea3986b88385ed256 /esp8266 | |
parent | 941ddfe559e5e421fdb6a285693cb7f39d073832 (diff) | |
download | micropython-078504059315c085018d3635823806aac49c2384.tar.gz micropython-078504059315c085018d3635823806aac49c2384.zip |
esp8266/Makefile: Enable "ussl" module.
axTLS should be built first using "make axtls".
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index 2d3f3ac5c7..83300d4907 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -3,6 +3,8 @@ include ../py/mkenv.mk # qstr definitions (must come before including py.mk) QSTR_DEFS = qstrdefsport.h #$(BUILD)/pins_qstr.h +MICROPY_PY_USSL = 1 + # include py core make definitions include ../py/py.mk |