[pywin32-checkins] /hgroot/pywin32/pywin32: Include perfmon headers in source dist ...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2014-03-02 23:41:29
|
changeset 7d1d77ba3759 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=7d1d77ba3759 summary: Include perfmon headers in source dist (??? not sure how they were getting included before ???) diffstat: MANIFEST.in | 4 ++-- setup.py | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diffs (31 lines): diff -r 35899562c52e -r 7d1d77ba3759 MANIFEST.in --- a/MANIFEST.in Sat Mar 01 12:36:39 2014 -0500 +++ b/MANIFEST.in Sun Mar 02 18:37:14 2014 -0500 @@ -27,11 +27,11 @@ include win32/src/*.h include win32/src/*.manifest include win32/src/PerfMon/perfmondata.def -include win32/*.dsp +include win32/src/PerfMon/*.h include win32/License.txt # COM include com/pythoncom.py -include com/win32com/src/*.h +include com/win32com/src/include/*.h include com/win32com/src/PythonCOM.def include com/win32com/src/PythonCOMLoader.def include com/win32com/src/PythonCOMLoader.cpp diff -r 35899562c52e -r 7d1d77ba3759 setup.py --- a/setup.py Sat Mar 01 12:36:39 2014 -0500 +++ b/setup.py Sun Mar 02 18:37:14 2014 -0500 @@ -1559,6 +1559,10 @@ unicode_mode=True, export_symbol_file = "win32/src/PerfMon/perfmondata.def", is_regular_dll = 1, + depends = [ + "win32/src/PerfMon/perfutil.h", + "win32/src/PerfMon/PyPerfMonControl.h", + ], ), ) |