diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2000-06-30 15:47:02 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2000-06-30 15:47:02 (GMT) |
commit | 306e2403fa77742a3dcbdad7568fcf400b96dbf4 (patch) | |
tree | 329b82f7fa947dfa91cc42dc6aa4300c59521828 /PC | |
parent | 4247ba63bdd658c5d7a37e3e47bce4e8ee912367 (diff) | |
download | cpython-306e2403fa77742a3dcbdad7568fcf400b96dbf4.zip cpython-306e2403fa77742a3dcbdad7568fcf400b96dbf4.tar.gz cpython-306e2403fa77742a3dcbdad7568fcf400b96dbf4.tar.bz2 |
Python's .lib is now named Python20.lib
Diffstat (limited to 'PC')
-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 43bb35f..16f82e1 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 */ |