[pywin32-checkins] pywin32 setup.py,1.81.2.4,1.81.2.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-24 06:14:38
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7699 Modified Files: Tag: py3k setup.py Log Message: integrate some trunk changes Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.81.2.4 retrieving revision 1.81.2.5 diff -C2 -d -r1.81.2.4 -r1.81.2.5 *** setup.py 2 Nov 2008 11:52:02 -0000 1.81.2.4 --- setup.py 24 Nov 2008 06:14:33 -0000 1.81.2.5 *************** *** 1707,1713 **** PythonEng.cpp StdAfx.cpp Utils.cpp """.split()], depends=[os.path.join("isapi", "src", s) for s in """ControlBlock.h FilterContext.h PyExtensionObjects.h ! PyFilterObjects.h pyISAPI.h pyISAPI_messages.h PythonEng.h StdAfx.h Utils.h """.split()], --- 1707,1717 ---- PythonEng.cpp StdAfx.cpp Utils.cpp """.split()], + # We keep pyISAPI_messages.h out of the depends list, as it is + # generated and we aren't smart enough to say *only* the .cpp etc + # depend on it - so the generated .h says the .mc needs to be + # rebuilt, which re-creates the .h... depends=[os.path.join("isapi", "src", s) for s in """ControlBlock.h FilterContext.h PyExtensionObjects.h ! PyFilterObjects.h pyISAPI.h PythonEng.h StdAfx.h Utils.h """.split()], |