[pywin32-checkins] pywin32 setup.py,1.33,1.34
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-02-11 03:47:11
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27565 Modified Files: setup.py Log Message: Support for IProviderAdmin from John Nielsen, and at the same time remove the use of the .dsp file for the MAPI projects. Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** setup.py 12 Jan 2006 23:04:59 -0000 1.33 --- setup.py 11 Feb 2006 03:47:01 -0000 1.34 *************** *** 1,3 **** ! build_id="207" # may optionally include a ".{patchno}" suffix. # Putting buildno at the top prevents automatic __doc__ assignment, and # I *want* the build number at the top :) --- 1,3 ---- ! build_id="207.1" # may optionally include a ".{patchno}" suffix. # Putting buildno at the top prevents automatic __doc__ assignment, and # I *want* the build number at the top :) *************** *** 1098,1101 **** --- 1098,1102 ---- 'shell' : 'com/win32comext/shell/src', 'axcontrol' : 'com/win32comext/axcontrol/src', + 'mapi' : 'com/win32comext/mapi/src', } *************** *** 1151,1157 **** ), WinExt_win32com('internet'), ! WinExt_win32com('mapi', libraries="mapi32", pch_header="PythonCOM.h"), ! WinExt_win32com_mapi('exchange', libraries="version"), ! WinExt_win32com_mapi('exchdapi'), WinExt_win32com('shell', libraries='shell32', pch_header="shell_pch.h", sources=(""" --- 1152,1185 ---- ), WinExt_win32com('internet'), ! WinExt_win32com('mapi', libraries="mapi32", pch_header="PythonCOM.h", ! sources=(""" ! %(mapi)s/mapi.i %(mapi)s/mapi.cpp ! %(mapi)s/PyIABContainer.i %(mapi)s/PyIABContainer.cpp ! %(mapi)s/PyIAddrBook.i %(mapi)s/PyIAddrBook.cpp ! %(mapi)s/PyIAttach.i %(mapi)s/PyIAttach.cpp ! %(mapi)s/PyIDistList.i %(mapi)s/PyIDistList.cpp ! %(mapi)s/PyIMailUser.i %(mapi)s/PyIMailUser.cpp ! %(mapi)s/PyIMAPIContainer.i %(mapi)s/PyIMAPIContainer.cpp ! %(mapi)s/PyIMAPIFolder.i %(mapi)s/PyIMAPIFolder.cpp ! %(mapi)s/PyIMAPIProp.i %(mapi)s/PyIMAPIProp.cpp ! %(mapi)s/PyIMAPISession.i %(mapi)s/PyIMAPISession.cpp ! %(mapi)s/PyIMAPITable.i %(mapi)s/PyIMAPITable.cpp ! %(mapi)s/PyIMessage.i %(mapi)s/PyIMessage.cpp ! %(mapi)s/PyIMsgServiceAdmin.i %(mapi)s/PyIMsgServiceAdmin.cpp ! %(mapi)s/PyIMsgStore.i %(mapi)s/PyIMsgStore.cpp ! %(mapi)s/PyIProfAdmin.i %(mapi)s/PyIProfAdmin.cpp ! %(mapi)s/PyIProfSect.i %(mapi)s/PyIProfSect.cpp ! ! %(mapi)s/mapiutil.cpp ! %(mapi)s/mapiguids.cpp ! """ % dirs).split()), ! WinExt_win32com_mapi('exchange', libraries="version", ! sources=(""" ! %(mapi)s/exchange.i %(mapi)s/exchange.cpp ! """ % dirs).split()), ! WinExt_win32com_mapi('exchdapi', ! sources=(""" ! %(mapi)s/exchdapi.i %(mapi)s/exchdapi.cpp ! """ % dirs).split()), WinExt_win32com('shell', libraries='shell32', pch_header="shell_pch.h", sources=(""" |