- stubs are no longer included in makensis but read from the Stubs directory

- new /SOLID switch for SetCompressor allows setting solid compression without recompiling makensis


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3945 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-04-02 12:04:07 +00:00
parent c345108cc0
commit 9613c8988f
10 changed files with 157 additions and 211 deletions

View file

@ -58,27 +58,6 @@
#define NSIS_CONFIG_COMPRESSION_SUPPORT
// compression specific options
// NSIS_ZLIB_COMPRESS_WHOLE makes all install data in zlib installers
// compressed together. Runtime requirements are increased, but potential
// for compression is as well. Requires that the installer create a
// (potentially large) temporary file in the temp directory.
// not recommended for zlib installers, since bzip2 performs much better
// than zlib in whole mode usually.
// #define NSIS_ZLIB_COMPRESS_WHOLE
// NSIS_LZMA_COMPRESS_WHOLE makes all install data in lzma installers
// compressed together. Runtime requirements are increased, but potential
// for compression is as well. Requires that the installer create a
// (potentially large) temporary file in the temp directory.
#define NSIS_LZMA_COMPRESS_WHOLE
// NSIS_BZIP2_COMPRESS_WHOLE makes all install data in bzip2 installers
// compressed together. Runtime requirements are increased, but potential
// for compression is as well. Requires that the installer create a
// (potentially large) temporary file in the temp directory.
// recommended for bzip2, since bzip2 really shines in this mode
#define NSIS_BZIP2_COMPRESS_WHOLE
// if NSIS_COMPRESS_BZIP2_SMALLMODE is defined, bzip2's decompressor uses
// bzip2's alternative decompression method that uses less runtime
// memory, at the expense of speed (and executable size). not recommended.
@ -309,24 +288,6 @@
#endif
#ifdef NSIS_CONFIG_COMPRESSION_SUPPORT
#ifdef NSIS_COMPRESS_USE_ZLIB
#ifdef NSIS_ZLIB_COMPRESS_WHOLE
#define NSIS_COMPRESS_WHOLE
#endif
#endif
#ifdef NSIS_COMPRESS_USE_BZIP2
#ifdef NSIS_BZIP2_COMPRESS_WHOLE
#define NSIS_COMPRESS_WHOLE
#endif
#endif
#ifdef NSIS_COMPRESS_USE_LZMA
#ifdef NSIS_LZMA_COMPRESS_WHOLE
#define NSIS_COMPRESS_WHOLE
#endif
#endif
#ifdef NSIS_COMPRESS_WHOLE
#ifdef NSIS_CONFIG_VISIBLE_SUPPORT
#ifndef _NSIS_CONFIG_VERIFYDIALOG