summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2014-04-17 17:49:00 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2014-04-17 17:49:00 (GMT)
commitdc282134eed4b62322b7fac77c6c38f9b494e9ed (patch)
tree448bb5677dd68bd14b8ee42a5b136037e7bbffc0 /Python/pythonrun.c
parent72f61de768dc17ad528e1b3c01a87998eff22cac (diff)
parent4a173bc4edfbc731f227a84a26eb24b6aef91dd6 (diff)
downloadcpython-dc282134eed4b62322b7fac77c6c38f9b494e9ed.zip
cpython-dc282134eed4b62322b7fac77c6c38f9b494e9ed.tar.gz
cpython-dc282134eed4b62322b7fac77c6c38f9b494e9ed.tar.bz2
- Merge 3.4
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 3f46056..4fd5149 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -35,6 +35,10 @@
#define PATH_MAX MAXPATHLEN
#endif
+#ifdef __gnu_hurd__
+#define PATH_MAX MAXPATHLEN
+#endif
+
_Py_IDENTIFIER(builtins);
_Py_IDENTIFIER(excepthook);
_Py_IDENTIFIER(flush);