From 6f7d95c4af5fe7d4cac65ae3e4a1d8eb89f4eac2 Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Sat, 1 Jun 2002 02:12:30 +0000 Subject: [PATCH] Specify the compression type; the current version of Inno Setup supports the more efficient bzip algorithm, so we can produce a smaller installer to download. Or at least partially mitigate the addition of the wchar_t version of the DLLs. Install the Changes file as Changes.txt. Add a note telling what version of Inno Setup the script is for. --- expat/win32/expat.iss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/expat/win32/expat.iss b/expat/win32/expat.iss index 7992fb81..ada3a3c0 100644 --- a/expat/win32/expat.iss +++ b/expat/win32/expat.iss @@ -2,6 +2,7 @@ ; information on the free installer builder, see www.jrsoftware.org. ; ; This script was contributed by Tim Peters. +; The current version is used with Inno Setup 2.0.19. [Setup] AppName=expat @@ -17,7 +18,7 @@ AppUpdatesURL=http://expat.sourceforge.net/ UninstallDisplayName=Expat XML Parser (version 1.95.3) UninstallFilesDir={app}\Uninstall -CompressLevel=9 +Compression=bzip/9 SourceDir=.. OutputDir=win32 DisableStartupPrompt=yes @@ -28,8 +29,8 @@ DisableReadyPage=yes [Files] CopyMode: alwaysoverwrite; Source: xmlwf\Release\*.exe; DestDir: "{app}" CopyMode: alwaysoverwrite; Source: win32\MANIFEST.txt; DestDir: "{app}" +CopyMode: alwaysoverwrite; Source: Changes; DestDir: "{app}"; DestName: Changes.txt CopyMode: alwaysoverwrite; Source: COPYING; DestDir: "{app}"; DestName: COPYING.txt -CopyMode: alwaysoverwrite; Source: NEWS; DestDir: "{app}"; DestName: NEWS.txt CopyMode: alwaysoverwrite; Source: README; DestDir: "{app}"; DestName: README.txt CopyMode: alwaysoverwrite; Source: doc\*.html; DestDir: "{app}\Doc" CopyMode: alwaysoverwrite; Source: doc\*.css; DestDir: "{app}\Doc" -- 2.40.0