diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-06 21:13:06 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-06 21:13:06 (GMT) |
commit | 3d2f564d414a8ab766b1ea3aa86e7aee6f261f19 (patch) | |
tree | 3db30a07b13f1e3e6e8fbd0c6a95ad2a518b4ef4 /PC | |
parent | 0a5e54e732ba892e3386d3571ebd0b36934d057b (diff) | |
download | cpython-3d2f564d414a8ab766b1ea3aa86e7aee6f261f19.zip cpython-3d2f564d414a8ab766b1ea3aa86e7aee6f261f19.tar.gz cpython-3d2f564d414a8ab766b1ea3aa86e7aee6f261f19.tar.bz2 |
Several Windows related cleanups:
* Removed a #define from pyconfig.h. The macro was already defined a few lines higher.
* Fixed path to tix in the build_tkinter.py script
* Changed make_buildinfo.c to use versions of unlink and strcat which are considered safe by Windows (as suggested by MvL).
* Removed two defines from pyproject.vsprops that are no longer required. Both are defined in pyconfig.h and make_buildinfo.c doesn't use the unsafe versions any more (as suggested by MvL).
* Added some more information about PGO and the property files to PCbuild9/readme.txt.
Are you fine with the changes, Martin?
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 9ab20f7..f1f719f 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -209,12 +209,6 @@ typedef int pid_t; #define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X)) #define Py_IS_FINITE(X) _finite(X) -/* Turn off warnings about deprecated C runtime functions in - VisualStudio .NET 2005 */ -#if _MSC_VER >= 1400 && !defined _CRT_SECURE_NO_DEPRECATE -#define _CRT_SECURE_NO_DEPRECATE -#endif - #endif /* _MSC_VER */ /* define some ANSI types that are not defined in earlier Win headers */ |