[Expat-checkins] expat/win32 expat.iss,1.8,1.9

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Fri May 31 19:13:03 2002


Update of /cvsroot/expat/expat/win32
In directory usw-pr-cvs1:/tmp/cvs-serv19606/win32

Modified Files:
	expat.iss 
Log Message:
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.


Index: expat.iss
===================================================================
RCS file: /cvsroot/expat/expat/win32/expat.iss,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- expat.iss	31 May 2002 04:35:57 -0000	1.8
+++ expat.iss	1 Jun 2002 02:12:30 -0000	1.9
@@ -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 @@
 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 @@
 [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"