[pywin32-checkins] pywin32 setup.py,1.84,1.85
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-13 10:29:57
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1137 Modified Files: setup.py Log Message: define _CRT_SECURE_NO_WARNINGS - those warnings are obscuring the far more important warnings that might be generated by py3k work. Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** setup.py 2 Nov 2008 11:47:47 -0000 1.84 --- setup.py 13 Nov 2008 10:29:53 -0000 1.85 *************** *** 269,272 **** --- 269,273 ---- define_macros = define_macros or [] define_macros.append(("DISTUTILS_BUILD", None)) + define_macros.append(("_CRT_SECURE_NO_WARNINGS", None)) self.pch_header = pch_header self.extra_swig_commands = extra_swig_commands or [] |