[pywin32-checkins] pywin32 setup_win32all_core.py,1.7,1.8
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-11-07 23:18:59
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1:/tmp/cvs-serv11290 Modified Files: setup_win32all_core.py Log Message: Add perfmon and servicemanager. Index: setup_win32all_core.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup_win32all_core.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** setup_win32all_core.py 7 Nov 2003 13:18:05 -0000 1.7 --- setup_win32all_core.py 7 Nov 2003 23:18:56 -0000 1.8 *************** *** 213,216 **** --- 213,217 ---- win32_extensions = [] for name, lib_names, is_unicode in ( + ("perfmon", "", True), ("win2kras", "rasapi32", False), ("win32api", "", False), *************** *** 234,238 **** ("win32wnet", "netapi32 mpr", False), ): ! extra_compile_args = [] if is_unicode: --- 235,239 ---- ("win32wnet", "netapi32 mpr", False), ): ! extra_compile_args = [] if is_unicode: *************** *** 250,255 **** extra_compile_args=["-DWIN32GUI"] ), ] - ################################################################ --- 251,259 ---- extra_compile_args=["-DWIN32GUI"] ), + WinExt('servicemanager', + extra_compile_args = ['-DUNICODE', '-D_UNICODE', + '-DWINNT', '-DPYSERVICE_BUILD_DLL'], + dsp_file = r"win32\Pythonservice servicemanager.dsp") ] ################################################################ |