diff options
author | Guido van Rossum <guido@python.org> | 1997-08-13 19:52:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-13 19:52:26 (GMT) |
commit | 5137ea9e27f9e34a83c23e533451cebc4705dbba (patch) | |
tree | 54dfc7e01ed9a281bd4918d9b4556b973aa1566b /PC | |
parent | abed54ab4aa8ce5a1c4b413f1273dc8bde687297 (diff) | |
download | cpython-5137ea9e27f9e34a83c23e533451cebc4705dbba.zip cpython-5137ea9e27f9e34a83c23e533451cebc4705dbba.tar.gz cpython-5137ea9e27f9e34a83c23e533451cebc4705dbba.tar.bz2 |
Remove #define main; remove vc40 from PYTHONPATH.
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/PC/config.h b/PC/config.h index c3512f7..48d90a5 100644 --- a/PC/config.h +++ b/PC/config.h @@ -57,7 +57,6 @@ standard macro MS_COREDLL to find out. If you have an exception you must define MS_NO_COREDLL (do not test this macro) */ #ifndef MS_NO_COREDLL #define MS_COREDLL /* Python core is in a DLL */ -#define main Py_Main #ifndef USE_DL_EXPORT #define USE_DL_IMPORT #endif /* !USE_DL_EXPORT */ @@ -68,7 +67,7 @@ you must define MS_NO_COREDLL (do not test this macro) */ #else #define COMPILER "[MSC (Unknown)]" #endif -#define PYTHONPATH ".\\lib;.\\lib\\win;.\\lib\\test;.\\lib\\tkinter;.\\vc40" +#define PYTHONPATH ".\\lib;.\\lib\\win;.\\lib\\test;.\\lib\\tkinter" typedef int pid_t; #define WORD_BIT 32 #pragma warning(disable:4113) |