diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-13 00:33:15 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2012-02-13 00:33:15 -0500 |
commit | 3f8472f0b2a88d014351b59fdbc87e8de5733519 (patch) | |
tree | 9a3666add6caebb82fa5533ada13122f2d1077e6 /PACKAGE | |
parent | 267c69a5da83301d1d3d8ab7a493bbf51a17ce41 (diff) | |
download | lynx-snapshots-3f8472f0b2a88d014351b59fdbc87e8de5733519.tar.gz |
snapshot of project "lynx", label v2-8-8dev_9o
Diffstat (limited to 'PACKAGE')
-rw-r--r-- | PACKAGE/lynx.iss | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/PACKAGE/lynx.iss b/PACKAGE/lynx.iss index 9a7da935..27605cc5 100644 --- a/PACKAGE/lynx.iss +++ b/PACKAGE/lynx.iss @@ -1,4 +1,4 @@ -; $LynxId: lynx.iss,v 1.4 2009/11/22 23:59:04 tom Exp $ +; $LynxId: lynx.iss,v 1.5 2012/02/11 13:21:25 tom Exp $ ; vile:ts=2 sw=2 notabinsert ; ; This is the BASE script for different flavors of the installer for Lynx. @@ -32,6 +32,22 @@ #endif #endif +#ifndef BzipDllName +#define BzipDllName "bzip2.dll" +#endif + +#ifndef ZlibDllName +#define ZlibDllName "zlib.dll" +#endif + +#ifndef BzipExeName +#define BzipExeName "bzip2.exe" +#endif + +#ifndef GzipExeName +#define GzipExeName "gzip.exe" +#endif + #ifndef SetupBaseName #define SetupBaseName "lynx" #endif @@ -110,6 +126,10 @@ Name: "{app}\tmp" #ifndef NoScreenDll #emit 'Source: "' + DllsSrcDir + '\' + ScreenDllName + '"; DestDir: "{app}"; DestName: ' + ScreenDllName + '; Flags: ignoreversion' #endif +#emit 'Source: "' + DllsSrcDir + '\' + ZlibDllName + '"; DestDir: "{app}"; DestName: ' + ZlibDllName + '; Flags: ignoreversion' +#emit 'Source: "' + DllsSrcDir + '\' + BzipDllName + '"; DestDir: "{app}"; DestName: ' + BzipDllName + '; Flags: ignoreversion' +#emit 'Source: "' + DllsSrcDir + '\' + BzipExeName + '"; DestDir: "{app}"; DestName: ' + BzipExeName + '; Flags: ignoreversion' +#emit 'Source: "' + DllsSrcDir + '\' + GzipExeName + '"; DestDir: "{app}"; DestName: ' + GzipExeName + '; Flags: ignoreversion' #emit 'Source: "' + DocsSrcDir + '\*.*"; DestDir: "{app}\doc"; Flags: ' #emit 'Source: "' + DocsSrcDir + '\samples\*.*"; DestDir: "{app}\doc\samples"; Flags: ' #emit 'Source: "' + DocsSrcDir + '\test\*.*"; DestDir: "{app}\doc\test"; Flags: ' |