mirror of
https://github.com/python/cpython.git
synced 2026-03-27 15:10:56 +00:00
Issue #2065: VC6 related fix.
- PC/VC6/_bsddb.dsp:
removed '/nodefaultlib:"msvcrt"' to fix linker error.
- PC/VC6/_msi.dsp, PC/VC6/pcbuild.dsw:
added new module support.
- PC/VC6/_sqlite3.dsp:
/D "MODULE_NAME=\"sqlite3\""
caused extra leading space like
#define MODULE_NAME " sqlite3"
so uses
/D MODULE_NAME=\"sqlite3\"
instead.
- PC/VC6/python.dsp:
changed stack size to 2MB to avoid stack overflow on
some tests.
This commit is contained in:
parent
581a1495a1
commit
eea8eda317
8 changed files with 169 additions and 45 deletions
|
|
@ -181,6 +181,10 @@ SOURCE=..\..\PC\_subprocess.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Python\_warnings.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\_weakref.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -205,10 +209,6 @@ SOURCE=..\..\Modules\arraymodule.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Python\_warnings.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Python\asdl.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -245,10 +245,6 @@ SOURCE=..\..\Objects\bytearrayobject.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Objects\stringobject.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Objects\bytes_methods.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -353,6 +349,10 @@ SOURCE=..\..\Objects\fileobject.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Parser\firstsets.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Objects\floatobject.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -434,10 +434,18 @@ SOURCE=..\..\Python\graminit.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Parser\grammar.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Parser\grammar1.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\zlib\gzio.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\imageop.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -455,6 +463,10 @@ SOURCE=..\..\Python\importdl.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\zlib\infback.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\zlib\inffast.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -603,6 +615,10 @@ SOURCE=..\..\Python\pystate.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Python\pystrcmp.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Python\pystrtod.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -651,6 +667,10 @@ SOURCE=..\..\Objects\sliceobject.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Objects\stringobject.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\stropmodule.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
@ -707,6 +727,10 @@ SOURCE=..\..\Objects\typeobject.c
|
|||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Modules\zlib\uncompr.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\Objects\unicodectype.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue