summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-03-03 02:59:16 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2002-03-03 02:59:16 (GMT)
commit7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2 (patch)
tree9da72d3e52c043d4fc5437967ddb9a0f0226b6e9 /Modules/main.c
parent38b504e9e3ef3049815779e8c18b62f690ec4ed2 (diff)
downloadcpython-7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2.zip
cpython-7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2.tar.gz
cpython-7bf6833e178696b9815fd4e4c6d1cecc8b46bdd2.tar.bz2
OS/2 EMX port changes (Modules part of patch #450267):
Modules/ _hotshot.c dbmmodule.c fcntlmodule.c main.c pwdmodule.c readline.c selectmodule.c signalmodule.c termios.c timemodule.c unicodedata.c
Diffstat (limited to 'Modules/main.c')
-rw-r--r--Modules/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c
index b36714c..9ce8bef 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -8,11 +8,15 @@
#include <fcntl.h>
#endif
-#if defined(PYOS_OS2) || defined(MS_WINDOWS)
+#if (defined(PYOS_OS2) && !defined(PYCC_GCC)) || defined(MS_WINDOWS)
#define PYTHONHOMEHELP "<prefix>\\lib"
#else
+#if defined(PYOS_OS2) && defined(PYCC_GCC)
+#define PYTHONHOMEHELP "<prefix>/Lib"
+#else
#define PYTHONHOMEHELP "<prefix>/pythonX.X"
#endif
+#endif
#include "pygetopt.h"