[pywin32-checkins] pywin32 setup_win32all_core.py,1.11,1.12
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-11-10 10:40:24
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1:/tmp/cvs-serv18319 Modified Files: setup_win32all_core.py Log Message: Making things work for Thomas. Index: setup_win32all_core.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup_win32all_core.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** setup_win32all_core.py 10 Nov 2003 04:49:00 -0000 1.11 --- setup_win32all_core.py 10 Nov 2003 10:40:20 -0000 1.12 *************** *** 228,232 **** swig_sources.append(source) # and win32all has it's own naming convention for the wrappers: ! swig_targets[source] = base + 'module_win32' + target_ext else: new_sources.append(source) --- 228,235 ---- swig_sources.append(source) # and win32all has it's own naming convention for the wrappers: ! if base.endswith("win32pipe") or base.endswith("win32security"): ! swig_targets[source] = base + 'module' + target_ext ! else: ! swig_targets[source] = base + 'module_win32' + target_ext else: new_sources.append(source) *************** *** 265,272 **** ("win2kras", "rasapi32", False), ("win32api", "user32 advapi32 shell32 version", False), ! ("win32file", "", False), ("win32event", "user32", False), ("win32clipboard", "gdi32 user32 shell32", False), ! ("win32evtlog", "advapi32", False), # win32gui handled below ("win32help", "htmlhelp user32 advapi32", False), --- 268,275 ---- ("win2kras", "rasapi32", False), ("win32api", "user32 advapi32 shell32 version", False), ! ("win32file", "oleaut32", False), ("win32event", "user32", False), ("win32clipboard", "gdi32 user32 shell32", False), ! ("win32evtlog", "advapi32 oleaut32", False), # win32gui handled below ("win32help", "htmlhelp user32 advapi32", False), *************** *** 280,284 **** ("win32ras", "rasapi32 user32", False), ("win32security", "advapi32 user32", True), ! ("win32service", "advapi32", True), ("win32trace", "advapi32", False), ("win32wnet", "netapi32 mpr", False), --- 283,287 ---- ("win32ras", "rasapi32 user32", False), ("win32security", "advapi32 user32", True), ! ("win32service", "advapi32 oleaut32", True), ("win32trace", "advapi32", False), ("win32wnet", "netapi32 mpr", False), |