Commit 772058a6 authored by Damien George's avatar Damien George

py/mpconfig.h: Define MICROPY_PY_USSL_FINALISER only if not defined.

So a port can define it even if MICROPY_PY_USSL is not defined.
Signed-off-by: default avatarDamien George <damien@micropython.org>
parent 22cf0940
......@@ -1552,7 +1552,10 @@ typedef double mp_float_t;
#ifndef MICROPY_PY_USSL
#define MICROPY_PY_USSL (0)
#endif
// Whether to add finaliser code to ussl objects
#ifndef MICROPY_PY_USSL_FINALISER
#define MICROPY_PY_USSL_FINALISER (0)
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment