Update of /cvsroot/pywin32/pywin32/Pythonwin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8551
Modified Files:
win32ui.h
Log Message:
Only use an MFC8 manifest if we are using MFC8 (vs2008 makes it
unnecessary for MFC9)
Index: win32ui.h
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32ui.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** win32ui.h 5 Jul 2007 05:31:39 -0000 1.6
--- win32ui.h 17 May 2008 04:06:14 -0000 1.7
***************
*** 29,33 ****
// For MFC8 (VS2005), we need to nominate the MFC assembly - may as well do
// it here so its done once for all projects!
! #if _MFC_VER >= 0x0800
# pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.VC80.MFC' version='8.0.50727.762' processorArchitecture='*' publicKeyToken='fc8b3b9a1e18e3b' language='*'\"")
#endif
--- 29,34 ----
// For MFC8 (VS2005), we need to nominate the MFC assembly - may as well do
// it here so its done once for all projects!
! // BUT - this isn't needed any more for MFC9/VS2008
! #if _MFC_VER >= 0x0800 && _MFC_VER < 0x0900
# pragma comment(linker,"/manifestdependency:\"type='win32' name='Microsoft.VC80.MFC' version='8.0.50727.762' processorArchitecture='*' publicKeyToken='fc8b3b9a1e18e3b' language='*'\"")
#endif
|