]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Change the pragmas to use python16.lib instead of python15.lib. (Took
authorGuido van Rossum <guido@python.org>
Wed, 29 Mar 2000 01:48:29 +0000 (01:48 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 29 Mar 2000 01:48:29 +0000 (01:48 +0000)
me half an hour to find why it was still linking with python15.dll!)

PC/config.h

index c1e4f848ebec63e7687c4f1b010e0e0b9dcc3ca4..915b1c2d8aef15eb31c52ffb494bf13dd6f2323d 100644 (file)
@@ -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 */