# HG changeset patch # User Steve Borho # Date 1250474029 18000 # Node ID 7ee67a037dcb5d7afd9ec2964aa7246c0756bc3a # Parent 9488a4d64fb56219dcd10c1195cefc8a1e59c498 iss: make mfc*.dll and msvc*.dll optional mfc71.dll was only needed for Python2.4 msvc*.dll is similarly optional Do not bail installer build if not found diff -r 9488a4d64fb5 -r 7ee67a037dcb contrib/win32/mercurial.iss --- a/contrib/win32/mercurial.iss Sun Aug 16 21:23:48 2009 -0500 +++ b/contrib/win32/mercurial.iss Sun Aug 16 20:53:49 2009 -0500 @@ -54,8 +54,8 @@ Source: dist\hg.exe; DestDir: {app}; AfterInstall: Touch('{app}\hg.exe.local') Source: dist\python*.dll; Destdir: {app}; Flags: skipifsourcedoesntexist Source: dist\library.zip; DestDir: {app} -Source: dist\mfc*.dll; DestDir: {app} -Source: dist\msvc*.dll; DestDir: {app} +Source: dist\mfc*.dll; DestDir: {app}; Flags: skipifsourcedoesntexist +Source: dist\msvc*.dll; DestDir: {app}; Flags: skipifsourcedoesntexist Source: dist\Microsoft.VC*.CRT.manifest; DestDir: {app}; Flags: skipifsourcedoesntexist Source: dist\Microsoft.VC*.MFC.manifest; DestDir: {app}; Flags: skipifsourcedoesntexist Source: dist\w9xpopen.exe; DestDir: {app}