[pywin32-checkins] pywin32 setup.py,1.100,1.101
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2009-02-08 19:31:27
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27123 Modified Files: setup.py Log Message: Specify sources for win32file so .dsp can be removed Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.100 retrieving revision 1.101 diff -C2 -d -r1.100 -r1.101 *** setup.py 7 Feb 2009 04:28:59 -0000 1.100 --- setup.py 8 Feb 2009 19:31:20 -0000 1.101 *************** *** 1437,1440 **** --- 1437,1441 ---- for info in ( + # (name, libraries, UNICODE, WINVER, sources) ("mmapfile", "", None), ("odbc", "odbc32 odbccp32", None), *************** *** 1444,1448 **** ("win32cred", "AdvAPI32 credui", True, 0x0501, 'win32/src/win32credmodule.cpp'), ("win32crypt", "Crypt32", None, 0x0500, 'win32/src/win32crypt.i'), ! ("win32file", "oleaut32", None, 0x0500), ("win32event", "user32", None), ("win32clipboard", "gdi32 user32 shell32", None), --- 1445,1452 ---- ("win32cred", "AdvAPI32 credui", True, 0x0501, 'win32/src/win32credmodule.cpp'), ("win32crypt", "Crypt32", None, 0x0500, 'win32/src/win32crypt.i'), ! ("win32file", "", None, 0x0500, """ ! win32/src/win32file.i ! win32/src/win32file_comm.cpp ! """), ("win32event", "user32", None), ("win32clipboard", "gdi32 user32 shell32", None), |