[pywin32-checkins] pywin32 setup.py,1.107,1.108
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-06-18 10:23:16
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21294 Modified Files: setup.py Log Message: Support for IExchangeManageStore from Nick Czeczulin - thanks! Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.107 retrieving revision 1.108 diff -C2 -d -r1.107 -r1.108 *** setup.py 11 Mar 2009 07:13:12 -0000 1.107 --- setup.py 18 Jun 2009 10:22:58 -0000 1.108 *************** *** 1704,1712 **** %(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 --- 1704,1713 ---- %(mapi)s/mapiguids.cpp """ % dirs).split()), ! WinExt_win32com_mapi('exchange', libraries="version user32 advapi32", sources=(""" %(mapi)s/exchange.i %(mapi)s/exchange.cpp + %(mapi)s/PyIExchangeManageStore.i %(mapi)s/PyIExchangeManageStore.cpp """ % dirs).split()), ! WinExt_win32com_mapi('exchdapi', libraries="advapi32", sources=(""" %(mapi)s/exchdapi.i %(mapi)s/exchdapi.cpp *************** *** 1888,1891 **** --- 1889,1893 ---- 'exchange': None, 'exchdapi': None, + 'PyIExchangeManageStore': '', # ADSI 'adsi': None, # module |