[Python-checkins] r59387 - python/trunk/PCbuild9/pyproject.vsprops

christian.heimes python-checkins at python.org
Thu Dec 6 14:30:11 CET 2007


Author: christian.heimes
Date: Thu Dec  6 14:30:11 2007
New Revision: 59387

Modified:
   python/trunk/PCbuild9/pyproject.vsprops
Log:
Silence more warnings, _CRT_NONSTDC_NO_DEPRECATE is already defined in pyconfig.h but several projects don't include it.

Modified: python/trunk/PCbuild9/pyproject.vsprops
==============================================================================
--- python/trunk/PCbuild9/pyproject.vsprops	(original)
+++ python/trunk/PCbuild9/pyproject.vsprops	Thu Dec  6 14:30:11 2007
@@ -12,7 +12,7 @@
 		InlineFunctionExpansion="1"
 		EnableIntrinsicFunctions="true"
 		AdditionalIncludeDirectories="..\Include; ..\PC"
-		PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_WIN32"
+		PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN32"
 		StringPooling="true"
 		ExceptionHandling="0"
 		RuntimeLibrary="0"


More information about the Python-checkins mailing list