diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2008-08-14 01:40:45 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2008-08-14 01:40:45 (GMT) |
commit | 0255f0e9f9ebe9015fb6837c6c5c22d4903f2431 (patch) | |
tree | 859fedd6b6584b0f81080bb1b58125cb45806983 /PC/VC6/pythoncore.dsp | |
parent | 423be95dcf55b0b8737207beb7b30eb549430dba (diff) | |
download | cpython-0255f0e9f9ebe9015fb6837c6c5c22d4903f2431.zip cpython-0255f0e9f9ebe9015fb6837c6c5c22d4903f2431.tar.gz cpython-0255f0e9f9ebe9015fb6837c6c5c22d4903f2431.tar.bz2 |
Issue #2065: VC6 related fix.
- PC/VC6/_bsddb.dsp:
removed '/nodefaultlib:"msvcrt"' to fix linker error.
- 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 the way of modifying stack size
Diffstat (limited to 'PC/VC6/pythoncore.dsp')
-rw-r--r-- | PC/VC6/pythoncore.dsp | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index 80d0220..a3ea6bd 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -185,11 +185,15 @@ SOURCE=..\..\PC\_subprocess.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\_weakref.c
+SOURCE=..\..\Modules\_threadmodule.c
# End Source File
# Begin Source File
-SOURCE=..\winreg.c
+SOURCE=..\..\Python\_warnings.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\Modules\_weakref.c
# End Source File
# Begin Source File
@@ -209,10 +213,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
@@ -313,14 +313,6 @@ SOURCE=..\..\Modules\zlib\deflate.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\zlib\gzio.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\Modules\zlib\infback.c
-# End Source File
-# Begin Source File
-
SOURCE=..\..\Objects\descrobject.c
# End Source File
# Begin Source File
@@ -442,6 +434,10 @@ SOURCE=..\..\Parser\grammar1.c # End Source File
# Begin Source File
+SOURCE=..\..\Modules\zlib\gzio.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Python\import.c
# End Source File
# Begin Source File
@@ -455,6 +451,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
@@ -503,11 +503,11 @@ SOURCE=..\..\Modules\md5module.c # End Source File
# Begin Source File
-SOURCE=..\..\Parser\metagrammar.c
+SOURCE=..\..\Objects\memoryobject.c
# End Source File
# Begin Source File
-SOURCE=..\..\Objects\memoryobject.c
+SOURCE=..\..\Parser\metagrammar.c
# End Source File
# Begin Source File
@@ -631,15 +631,15 @@ SOURCE=..\..\Objects\setobject.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\sha256module.c
+SOURCE=..\..\Modules\sha1module.c
# End Source File
# Begin Source File
-SOURCE=..\..\Modules\sha512module.c
+SOURCE=..\..\Modules\sha256module.c
# End Source File
# Begin Source File
-SOURCE=..\..\Modules\sha1module.c
+SOURCE=..\..\Modules\sha512module.c
# End Source File
# Begin Source File
@@ -675,10 +675,6 @@ SOURCE=..\..\Python\thread.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\_threadmodule.c
-# End Source File
-# Begin Source File
-
SOURCE=..\..\Modules\timemodule.c
# End Source File
# Begin Source File
@@ -695,15 +691,15 @@ SOURCE=..\..\Modules\zlib\trees.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\zlib\uncompr.c
+SOURCE=..\..\Objects\tupleobject.c
# End Source File
# Begin Source File
-SOURCE=..\..\Objects\tupleobject.c
+SOURCE=..\..\Objects\typeobject.c
# End Source File
# Begin Source File
-SOURCE=..\..\Objects\typeobject.c
+SOURCE=..\..\Modules\zlib\uncompr.c
# End Source File
# Begin Source File
@@ -719,6 +715,10 @@ SOURCE=..\..\Objects\weakrefobject.c # End Source File
# Begin Source File
+SOURCE=..\winreg.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\xxsubtype.c
# End Source File
# Begin Source File
|