summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-05-16 16:55:35 -0400
committerGitHub <noreply@github.com>2018-05-16 16:55:35 -0400
commit07c0a3227da24ef92e44a2457f94af71cc7f081c (patch)
tree58d933524e5909f93ee1b62d4a23d5947b7c4647
parent99e34e38eb6a81e0722b31b085c2f24ea1111981 (diff)
parent4f93467841fff419f1736a78d0a1dacac6911a7a (diff)
Merge pull request #843 from jerryneedell/jerryn_errno
fix ESP8266 build - clear MICROPY_USE_INTERNAL_ERRNO
-rw-r--r--ports/esp8266/mpconfigport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp8266/mpconfigport.h b/ports/esp8266/mpconfigport.h
index 616e9875c..907a4cbdf 100644
--- a/ports/esp8266/mpconfigport.h
+++ b/ports/esp8266/mpconfigport.h
@@ -28,7 +28,7 @@
#define MICROPY_ENABLE_SOURCE_LINE (1)
#define MICROPY_MODULE_WEAK_LINKS (1)
#define MICROPY_CAN_OVERRIDE_BUILTINS (1)
-#define MICROPY_USE_INTERNAL_ERRNO (1)
+#define MICROPY_USE_INTERNAL_ERRNO (0)
#define MICROPY_ENABLE_SCHEDULER (1)
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
#define MICROPY_PY_BUILTINS_COMPLEX (0)