diff options
author | sfan5 <sfan5@live.de> | 2021-02-18 12:17:18 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2021-02-25 18:34:17 +0100 |
commit | 264f8b72c1dce7c209ac8daaf0484aa3af7740b7 (patch) | |
tree | 08aad6b6652eaa87b0493738cc4fa0f4616767e8 /include/IrrCompileConfig.h | |
parent | 67f1402410a5b90f11c2a2bd69ba5d73eb6e943a (diff) | |
download | irrlicht-264f8b72c1dce7c209ac8daaf0484aa3af7740b7.tar.xz |
Throw out support for Bzip, LZMA and encrypted ZIPs
Diffstat (limited to 'include/IrrCompileConfig.h')
-rw-r--r-- | include/IrrCompileConfig.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/include/IrrCompileConfig.h b/include/IrrCompileConfig.h index 82a1b1d..1a638b0 100644 --- a/include/IrrCompileConfig.h +++ b/include/IrrCompileConfig.h @@ -771,26 +771,6 @@ ones. */ #ifdef NO_IRR_COMPILE_WITH_ZLIB_
#undef _IRR_COMPILE_WITH_ZLIB_
#endif
-//! Define _IRR_COMPILE_WITH_ZIP_ENCRYPTION_ if you want to read AES-encrypted ZIP archives
-#define _IRR_COMPILE_WITH_ZIP_ENCRYPTION_
-#ifdef NO_IRR_COMPILE_WITH_ZIP_ENCRYPTION_
-#undef _IRR_COMPILE_WITH_ZIP_ENCRYPTION_
-#endif
-//! Define _IRR_COMPILE_WITH_BZIP2_ if you want to support bzip2 compressed zip archives
-/** bzip2 is superior to the original zip file compression modes, but requires
-a certain amount of memory for decompression and adds several files to the
-library. */
-#define _IRR_COMPILE_WITH_BZIP2_
-#ifdef NO_IRR_COMPILE_WITH_BZIP2_
-#undef _IRR_COMPILE_WITH_BZIP2_
-#endif
-//! Define _IRR_COMPILE_WITH_LZMA_ if you want to use LZMA compressed zip files.
-/** LZMA is a very efficient compression code, known from 7zip. Irrlicht
-currently only supports zip archives, though. */
-#define _IRR_COMPILE_WITH_LZMA_
-#ifdef NO_IRR_COMPILE_WITH_LZMA_
-#undef _IRR_COMPILE_WITH_LZMA_
-#endif
#endif
//! Define __IRR_COMPILE_WITH_MOUNT_ARCHIVE_LOADER_ if you want to mount folders as archives
|