diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-17 23:23:13 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-17 23:23:13 (GMT) |
commit | 97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e (patch) | |
tree | 77008903f9a4ef28cae03a710de92279618a52c8 /PC/config.h | |
parent | 6425efe9aeb27fb698553b4cfcd925517052df72 (diff) | |
download | cpython-97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e.zip cpython-97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e.tar.gz cpython-97c9640cc9ad2fc591fd1d9a7f75f74b15599a0e.tar.bz2 |
Windows: 2.1a1 changes so Python runs again. Note that the python20
subproject is gone, replaced by the new pythoncore subproject.
Diffstat (limited to 'PC/config.h')
-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 9b2f918..65d390a 100644 --- a/PC/config.h +++ b/PC/config.h @@ -327,9 +327,9 @@ typedef unsigned long uintptr_t; more (other compilers will still need to do so, but that's taken care of by the Distutils, so it's not a problem). */ #ifdef _DEBUG -#pragma comment(lib,"python20_d.lib") +#pragma comment(lib,"python21_d.lib") #else -#pragma comment(lib,"python20.lib") +#pragma comment(lib,"python21.lib") #endif #endif /* USE_DL_EXPORT */ |