From 20283aec107d60f4339268f56fdf451d8867b49a Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 13 Jul 2016 01:49:38 +0300 Subject: extmod/modussl_axtls: Further changes to allow alternative SSL modules. Make variable MICROPY_SSL_AXTLS=1 should be defined to activate modussl_axtls and link with -laxtls. --- extmod/modussl_axtls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extmod') diff --git a/extmod/modussl_axtls.c b/extmod/modussl_axtls.c index 4a3e297e1..9e30ce6f8 100644 --- a/extmod/modussl_axtls.c +++ b/extmod/modussl_axtls.c @@ -32,7 +32,7 @@ #include "py/runtime.h" #include "py/stream.h" -#if MICROPY_PY_USSL +#if MICROPY_PY_USSL && MICROPY_SSL_AXTLS #include "ssl.h" -- cgit v1.2.3