[pywin32-checkins] pywin32 setup.py,1.85,1.86
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-24 06:05:58
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7088 Modified Files: setup.py Log Message: Remove pyISAPI_messages.h from the isapi 'depends' list as it caused spurious rebuilds of that module. Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.85 retrieving revision 1.86 diff -C2 -d -r1.85 -r1.86 *** setup.py 13 Nov 2008 10:29:53 -0000 1.85 --- setup.py 24 Nov 2008 06:05:52 -0000 1.86 *************** *** 1614,1620 **** 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()], --- 1614,1624 ---- 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()], |