[pywin32-checkins] pywin32 pywin32_postinstall.py,1.21,1.22
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-05-23 23:56:31
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18351 Modified Files: pywin32_postinstall.py Log Message: pywin32 for Python 2.6 depends on mfc90.dll Index: pywin32_postinstall.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/pywin32_postinstall.py,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** pywin32_postinstall.py 11 Apr 2008 00:12:12 -0000 1.21 --- pywin32_postinstall.py 23 May 2008 23:56:35 -0000 1.22 *************** *** 402,407 **** if sys.hexversion < 0x2040000: mfc_dll = "mfc42.dll" ! else: mfc_dll = "mfc71.dll" try: win32api.SearchPath(None, mfc_dll) --- 402,409 ---- if sys.hexversion < 0x2040000: mfc_dll = "mfc42.dll" ! elif sys.hexversion < 0x2060000: mfc_dll = "mfc71.dll" + else: + mfc_dll = "mfc90.dll" try: win32api.SearchPath(None, mfc_dll) |