diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2022-12-29 00:38:46 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2022-12-29 01:01:22 +0000 |
commit | f62d910382cf3ab8e0402166e4aba70ab426cdf0 (patch) | |
tree | 44737f2ced8b615f502ef9457e6744b60f61d2d8 /PACKAGE/lynx.iss | |
parent | 8582c56e4156e5da15f8924537462eabc66e7371 (diff) | |
download | lynx-snapshots-f62d910382cf3ab8e0402166e4aba70ab426cdf0.tar.gz |
snapshot of project "lynx", label v2-9-0dev_10p
Diffstat (limited to 'PACKAGE/lynx.iss')
-rw-r--r-- | PACKAGE/lynx.iss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/PACKAGE/lynx.iss b/PACKAGE/lynx.iss index 19a5e28f..9a5a2e28 100644 --- a/PACKAGE/lynx.iss +++ b/PACKAGE/lynx.iss @@ -1,4 +1,4 @@ -; $LynxId: lynx.iss,v 1.36 2022/03/11 01:29:33 tom Exp $ +; $LynxId: lynx.iss,v 1.37 2022/12/29 00:23:53 tom Exp $ ; vile:ts=4 sw=4 notabinsert fk=8bit ; ; This is the BASE script for different flavors of the installer for Lynx. @@ -515,12 +515,14 @@ begin // new-ssl matches "libssl-x-x-z", s/libssl/libcrypto/ SslFilename := 'libcrypto' + Copy(SslFilename, 7, Length(SslFilename)); CopyFromTo( SslDirectory, TargetDir, SslFilename ); +#ifdef RuntimeBundle // older releases of OpenSSL bundled the Visual Studio runtime - SslFilename := SslDirectory + '\' + 'msvcr120.dll'; + SslFilename := SslDirectory + '\' + 'msvcr120.dll' ; if FileExists(SslFilename) then begin CopyFromTo( SslDirectory, TargetDir, 'msvcr120.dll' ); end +#endif end else begin |