summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorstijn <stinos@zoho.com>2014-06-28 21:04:20 +0200
committerstijn <stinos@zoho.com>2014-06-29 09:40:20 +0200
commitec6fa8732b3b30e14e505d9ee004bde260d48255 (patch)
tree7fd6803dad5029dc0dab6ce35afe86ae76a557ff /py
parent8139494e54b5ad1630f30490216e9486b976bdb8 (diff)
downloadmicropython-ec6fa8732b3b30e14e505d9ee004bde260d48255.tar.gz
micropython-ec6fa8732b3b30e14e505d9ee004bde260d48255.zip
windows: Sync mpconfigport.h with the unix' version
- rearrange/add definitions that were not there so it's easier to compare both - use MICROPY_PY_SYS_PLATFORM in main.c since it's available anyway - define EWOULDBLOCK, it is missing from ingw32
Diffstat (limited to 'py')
-rw-r--r--py/stream.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/stream.c b/py/stream.c
index a5a96a8682..cfdea15cca 100644
--- a/py/stream.c
+++ b/py/stream.c
@@ -37,6 +37,9 @@
#include "stream.h"
#if MICROPY_STREAMS_NON_BLOCK
#include <errno.h>
+#if defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR)
+#define EWOULDBLOCK 140
+#endif
#endif
// This file defines generic Python stream read/write methods which