From: Mark Hammond Date: Fri, 30 Jun 2000 15:47:02 +0000 (+0000) Subject: Python's .lib is now named Python20.lib X-Git-Tag: v2.0b1~1215 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=306e2403fa77742a3dcbdad7568fcf400b96dbf4;p=thirdparty%2FPython%2Fcpython.git Python's .lib is now named Python20.lib --- diff --git a/PC/config.h b/PC/config.h index 43bb35f137b7..16f82e138b10 100644 --- a/PC/config.h +++ b/PC/config.h @@ -288,9 +288,9 @@ typedef long intptr_t; #ifndef USE_DL_EXPORT /* So nobody needs to specify the .lib in their Makefile any more */ #ifdef _DEBUG -#pragma comment(lib,"python16_d.lib") +#pragma comment(lib,"python20_d.lib") #else -#pragma comment(lib,"python16.lib") +#pragma comment(lib,"python20.lib") #endif #endif /* USE_DL_EXPORT */