# HG changeset patch # User Steve Borho # Date 2009-08-17 01:53:49 # 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 --git a/contrib/win32/mercurial.iss b/contrib/win32/mercurial.iss --- a/contrib/win32/mercurial.iss +++ b/contrib/win32/mercurial.iss @@ -54,8 +54,8 @@ Source: contrib\win32\postinstall.txt; D 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}