diff options
author | Guido van Rossum <guido@python.org> | 2000-03-29 01:48:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-29 01:48:29 (GMT) |
commit | 436364c8a0a9bb4c13ca27360c1cee0b17430e04 (patch) | |
tree | 48d10267fad3cdb91a87677dbcec5416983ec8e9 | |
parent | 21a50bd07892b9d53ffa36c5d6644ce00b34057b (diff) | |
download | cpython-436364c8a0a9bb4c13ca27360c1cee0b17430e04.zip cpython-436364c8a0a9bb4c13ca27360c1cee0b17430e04.tar.gz cpython-436364c8a0a9bb4c13ca27360c1cee0b17430e04.tar.bz2 |
Change the pragmas to use python16.lib instead of python15.lib. (Took
me half an hour to find why it was still linking with python15.dll!)
-rw-r--r-- | PC/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.h b/PC/config.h index c1e4f84..915b1c2 100644 --- a/PC/config.h +++ b/PC/config.h @@ -215,9 +215,9 @@ typedef int pid_t; #ifndef USE_DL_EXPORT /* So nobody needs to specify the .lib in their Makefile any more */ #ifdef _DEBUG -#pragma comment(lib,"python15_d.lib") +#pragma comment(lib,"python16_d.lib") #else -#pragma comment(lib,"python15.lib") +#pragma comment(lib,"python16.lib") #endif #endif /* USE_DL_EXPORT */ |