From: Guido van Rossum Date: Wed, 29 Mar 2000 01:48:29 +0000 (+0000) Subject: Change the pragmas to use python16.lib instead of python15.lib. (Took X-Git-Tag: v1.6a1~117 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=436364c8a0a9bb4c13ca27360c1cee0b17430e04;p=thirdparty%2FPython%2Fcpython.git 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!) --- diff --git a/PC/config.h b/PC/config.h index c1e4f848ebec..915b1c2d8aef 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 */