summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Include/osdefs.h6
-rw-r--r--Include/pyport.h3
2 files changed, 9 insertions, 0 deletions
diff --git a/Include/osdefs.h b/Include/osdefs.h
index 7a382ce..89e0ecb 100644
--- a/Include/osdefs.h
+++ b/Include/osdefs.h
@@ -17,9 +17,15 @@ extern "C" {
/* Mod by chrish: QNX has WATCOM, but isn't DOS */
#if !defined(__QNX__)
#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(PYOS_OS2)
+#if defined(PYOS_OS2) && defined(PYCC_GCC)
+#define MAXPATHLEN 260
+#define SEP '/'
+#define ALTSEP '\\'
+#else
#define SEP '\\'
#define ALTSEP '/'
#define MAXPATHLEN 256
+#endif
#define DELIM ';'
#endif
#endif
diff --git a/Include/pyport.h b/Include/pyport.h
index 8c54729..271ec43 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -157,6 +157,9 @@ typedef LONG_LONG Py_intptr_t;
#endif
#ifndef DONT_HAVE_SYS_STAT_H
+#if defined(PYOS_OS2) && defined(PYCC_GCC)
+#include <sys/types.h>
+#endif
#include <sys/stat.h>
#elif defined(HAVE_STAT_H)
#include <stat.h>