summaryrefslogtreecommitdiff
path: root/Source/exehead/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/exehead/config.h')
-rw-r--r--Source/exehead/config.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/Source/exehead/config.h b/Source/exehead/config.h
index c2f743e..e2ac413 100644
--- a/Source/exehead/config.h
+++ b/Source/exehead/config.h
@@ -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