summaryrefslogtreecommitdiffstatshomepage
path: root/py/mpconfig.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-11-05 21:16:41 +0000
committerDamien George <damien.p.george@gmail.com>2014-11-05 21:16:41 +0000
commit7860c2a68acd1ccd28cb4bb87819487fd6966a9e (patch)
treec18a1aa3d44b4f3f4510e1ff19eac166f15007dd /py/mpconfig.h
parentbe8e99c7d4ac4d46069a358436a7036a3066d0a9 (diff)
downloadmicropython-7860c2a68acd1ccd28cb4bb87819487fd6966a9e.tar.gz
micropython-7860c2a68acd1ccd28cb4bb87819487fd6966a9e.zip
py: Fix some macros defines; cleanup some includes.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r--py/mpconfig.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h
index 8ef3e62fec..02c6674d8b 100644
--- a/py/mpconfig.h
+++ b/py/mpconfig.h
@@ -184,8 +184,8 @@
#endif
// Whether to enable finalisers in the garbage collector (ie call __del__)
-#ifndef MICROPY_ENABLE_GC_FINALISER
-#define MICROPY_ENABLE_GC_FINALISER (0)
+#ifndef MICROPY_ENABLE_FINALISER
+#define MICROPY_ENABLE_FINALISER (0)
#endif
// Whether to check C stack usage. C stack used for calling Python functions,