From 94f9330d3e25e180776f732c0406a0f1dbbaeeb3 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 13 Nov 2015 15:23:35 +0200 Subject: [PATCH] unix: Allow to override MICROPY_PY_MATH_SPECIAL_FUNCTIONS from command-line. --- unix/mpconfigport.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/unix/mpconfigport.h b/unix/mpconfigport.h index 4dbb8ee2e3..a6bd98a727 100644 --- a/unix/mpconfigport.h +++ b/unix/mpconfigport.h @@ -84,7 +84,9 @@ #define MICROPY_PY_SYS_STDFILES (1) #define MICROPY_PY_SYS_EXC_INFO (1) #define MICROPY_PY_COLLECTIONS_ORDEREDDICT (1) +#ifndef MICROPY_PY_MATH_SPECIAL_FUNCTIONS #define MICROPY_PY_MATH_SPECIAL_FUNCTIONS (1) +#endif #define MICROPY_PY_CMATH (1) #define MICROPY_PY_IO_FILEIO (1) #define MICROPY_PY_GC_COLLECT_RETVAL (1)