[pywin32-checkins] pywin32 setup.py,1.81.2.10,1.81.2.11
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-12-16 08:58:55
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2716 Modified Files: Tag: py3k setup.py Log Message: Specify source file for win32pipe, reenable win32security Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.81.2.10 retrieving revision 1.81.2.11 diff -C2 -d -r1.81.2.10 -r1.81.2.11 *** setup.py 11 Dec 2008 03:45:48 -0000 1.81.2.10 --- setup.py 16 Dec 2008 08:58:49 -0000 1.81.2.11 *************** *** 1441,1445 **** """), ("win32pdh", "", None), ! ("win32pipe", "", None), ("win32print", "winspool user32 gdi32", None, 0x0500), ("win32process", "advapi32 user32", None, 0x0500), --- 1441,1445 ---- """), ("win32pdh", "", None), ! ("win32pipe", "", True, None, 'win32/src/win32pipe.i'), ("win32print", "winspool user32 gdi32", None, 0x0500), ("win32process", "advapi32 user32", None, 0x0500), *************** *** 1620,1624 **** %(mapi)s/PyIProfSect.i %(mapi)s/PyIProfSect.cpp %(mapi)s/PyIMAPIAdviseSink.cpp - %(mapi)s/mapiutil.cpp %(mapi)s/mapiguids.cpp --- 1620,1623 ---- *************** *** 1935,1939 **** if is_py3k: py3k_skip_modules = \ ! """win32security adsi mapi isapi PyISAPI_loader""".split() ext_modules = [e for e in ext_modules if e.name not in py3k_skip_modules] --- 1934,1938 ---- if is_py3k: py3k_skip_modules = \ ! """adsi mapi isapi PyISAPI_loader""".split() ext_modules = [e for e in ext_modules if e.name not in py3k_skip_modules] |