diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-09-09 06:08:36 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-09-09 06:08:36 (GMT) |
commit | 50e7cdb6b65b0376353d3f4edeaae9fb6db73d83 (patch) | |
tree | ba2ebe75e6ced01af397b3531715e6b0f856b64f /PC/VC6 | |
parent | 6c60d099e5ed97ee0026687c1ec3401cca49c0c2 (diff) | |
download | cpython-50e7cdb6b65b0376353d3f4edeaae9fb6db73d83.zip cpython-50e7cdb6b65b0376353d3f4edeaae9fb6db73d83.tar.gz cpython-50e7cdb6b65b0376353d3f4edeaae9fb6db73d83.tar.bz2 |
Updated VC6 files.
* pythoncore.dsp: updated project file
* readme.txt: removed dead link
* tcl852.patch: fixed patch. it was doubled.
Diffstat (limited to 'PC/VC6')
-rw-r--r-- | PC/VC6/pythoncore.dsp | 14 | ||||
-rw-r--r-- | PC/VC6/readme.txt | 3 | ||||
-rw-r--r-- | PC/VC6/tcl852.patch | 11 |
3 files changed, 14 insertions, 14 deletions
diff --git a/PC/VC6/pythoncore.dsp b/PC/VC6/pythoncore.dsp index 4e598ff..34ad169 100644 --- a/PC/VC6/pythoncore.dsp +++ b/PC/VC6/pythoncore.dsp @@ -133,6 +133,10 @@ SOURCE=..\..\Modules\_csv.c # End Source File
# Begin Source File
+SOURCE=..\..\Modules\_datetimemodule.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Modules\_functoolsmodule.c
# End Source File
# Begin Source File
@@ -185,6 +189,10 @@ SOURCE=..\..\Modules\_threadmodule.c # End Source File
# Begin Source File
+SOURCE=..\..\Modules\_time.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Python\_warnings.c
# End Source File
# Begin Source File
@@ -309,7 +317,7 @@ SOURCE=..\..\Modules\zlib\crc32.c # End Source File
# Begin Source File
-SOURCE=..\..\Modules\datetimemodule.c
+SOURCE=..\..\Python\dynamic_annotations.c
# End Source File
# Begin Source File
@@ -635,6 +643,10 @@ SOURCE=..\..\Python\pythonrun.c # End Source File
# Begin Source File
+SOURCE=..\..\Python\pytime.c
+# End Source File
+# Begin Source File
+
SOURCE=..\..\Objects\rangeobject.c
# End Source File
# Begin Source File
diff --git a/PC/VC6/readme.txt b/PC/VC6/readme.txt index 98b3315..d3d3681 100644 --- a/PC/VC6/readme.txt +++ b/PC/VC6/readme.txt @@ -2,8 +2,7 @@ Building Python using VC++ 6.0 or 5.0 ------------------------------------- This directory is used to build Python for Win32 platforms, e.g. Windows 2000 and XP. It requires Microsoft Visual C++ 6.x or 5.x and Platform -SDK February 2003 Edition (Core SDK). You can download this SDK from -http://www.microsoft.com/msdownload/platformsdk/sdkupdate/psdk-full.htm. +SDK February 2003 Edition (Core SDK). (For other Windows platforms and compilers, see ../readme.txt.) All you need to do is open the workspace "pcbuild.dsw" in MSVC++, select diff --git a/PC/VC6/tcl852.patch b/PC/VC6/tcl852.patch index 0b6c466..ed6780a 100644 --- a/PC/VC6/tcl852.patch +++ b/PC/VC6/tcl852.patch @@ -9,14 +9,3 @@ typedef struct _stati64 Tcl_StatBuf; # else typedef struct _stat64 Tcl_StatBuf; ---- tcl8.5.2\generic\tcl.h Fri Jun 13 03:35:39 2008 -+++ tcl8.5.2\generic\tcl.h Sun Jan 4 16:52:30 2009 -@@ -367,7 +367,7 @@ - typedef struct stati64 Tcl_StatBuf; - # define TCL_LL_MODIFIER "L" - # else /* __BORLANDC__ */ --# if _MSC_VER < 1400 && !defined(_M_IX86) -+# if _MSC_VER < 1400 /*&& !defined(_M_IX86)*/ - typedef struct _stati64 Tcl_StatBuf; - # else - typedef struct _stat64 Tcl_StatBuf; |