Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix Ada bindings on x64. | spectralio | 2025-02-05 | 1 | -1/+2 |
| | |||||
* | CMake: Make USE_FILE32API part of the interface. | Vollstrecker | 2025-01-31 | 1 | -12/+8 |
| | |||||
* | CMake: Give minizip a suffix on Cygwin as well. | Vollstrecker | 2025-01-31 | 1 | -2/+2 |
| | |||||
* | CMake: Clean up spaces in required versions. | Vollstrecker | 2025-01-31 | 4 | -4/+4 |
| | |||||
* | CMake: Add the tested version of cmake (3.31). | Vollstrecker | 2025-01-31 | 4 | -4/+4 |
| | | | | Per @ClausKlein suggestion. | ||||
* | CMake: Include bzip2 in the interface. | Vollstrecker | 2025-01-31 | 2 | -7/+16 |
| | |||||
* | CMake: Fix typo. | Vollstrecker | 2025-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: Add cmake-format.yaml and reformat the cmake files. | Vollstrecker | 2025-01-31 | 6 | -295/+265 |
| | |||||
* | CMake: Disable bzip2 for tests. | Vollstrecker | 2025-01-31 | 2 | -0/+2 |
| | | | | It's not installed everywhere. | ||||
* | CMake: Restore lost variable. | Vollstrecker | 2025-01-31 | 1 | -0/+1 |
| | |||||
* | CMake: Correct wording for minizip options. | Vollstrecker | 2025-01-31 | 1 | -2/+2 |
| | |||||
* | CMake: Add components selection. | Vollstrecker | 2025-01-31 | 2 | -16/+39 |
| | |||||
* | CMake: Refine tests. | Vollstrecker | 2025-01-31 | 4 | -117/+110 |
| | |||||
* | CMake: Do not link to bzip2. | Vollstrecker | 2025-01-31 | 1 | -11/+2 |
| | |||||
* | CMake: Clean up formatting. | Vollstrecker | 2025-01-31 | 1 | -3/+1 |
| | |||||
* | CMake: Search for zlib by CONFIG to get all needed targets. | Vollstrecker | 2025-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: Make bzip2 required if it's requested. | Vollstrecker | 2025-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: Avoid double inclusion of CPack warning. | Vollstrecker | 2025-01-31 | 1 | -0/+4 |
| | |||||
* | CMake: Order the includes consistently. | Vollstrecker | 2025-01-31 | 1 | -2/+2 |
| | |||||
* | CMake: Make bzip2 optional. | Vollstrecker | 2025-01-31 | 1 | -2/+4 |
| | |||||
* | CMake: Uncomment stop sign. | Vollstrecker | 2025-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: Depend on bzip2 only if it's found. | Vollstrecker | 2025-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: Add CPack. | Vollstrecker | 2025-01-31 | 1 | -5/+19 |
| | |||||
* | Correct one more comment style in minizip. | Vollstrecker | 2025-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: Prevent a 32-bit minizip build. | Vollstrecker | 2025-01-31 | 1 | -0/+5 |
| | |||||
* | Use consistent comment style in minizip. | Vollstrecker | 2025-01-31 | 8 | -197/+197 |
| | |||||
* | CMake: Increase CMake version to 3.12 for minizip tests. | Vollstrecker | 2025-01-31 | 3 | -4/+4 |
| | | | | And look for ZLIB package. | ||||
* | CMake: Make minizip search for config. | Werner | 2025-01-31 | 1 | -1/+1 |
| | |||||
* | CMake: Change to FindZLIB and ZLIB.cmake. | Werner | 2025-01-31 | 2 | -2/+2 |
| | |||||
* | CMake: Install ints.h for minizip. | Werner | 2025-01-31 | 1 | -0/+1 |
| | |||||
* | CMake: Rename exports of minizip. | Werner | 2025-01-31 | 2 | -10/+19 |
| | | | | minizip-ng has prior art. | ||||
* | CMake: Add minizip. | Vollstrecker | 2025-01-31 | 8 | -0/+645 |
| | |||||
* | Avoid the use of a reserved macro name in contrib/minizip/ioapi.h. | Mark Adler | 2024-09-01 | 1 | -2/+2 |
| | |||||
* | Add header file dependencies to contrib/minizip/Makefile. | Mark Adler | 2024-07-31 | 1 | -3/+11 |
| | |||||
* | Avoid use of stdint.h in contrib/minizip. | Mark Adler | 2024-07-31 | 5 | -51/+90 |
| | |||||
* | Add deflateUsed() function to get the used bits in the last byte. | Mark Adler | 2024-07-01 | 6 | -178/+196 |
| | | | | | This returns the number of used bits in the last byte of a stream that has just been compressed with deflate. | ||||
* | Remedy conflict between libzip and minizip zip.h. | Mark Adler | 2024-06-04 | 1 | -1/+1 |
| | | | | | | | | | | | | minizip.pc.in would add @include@/minizip to the include path, which would permit simply #include <zip.h> to use minizip. However that conflicts with the zip.h from libzip that is put in the root include directory. This now does not add /minizip to the include path. Now when using pkg-config, #include <minizip/zip.h> must be used, where #include <zip.h> would be used for libzip. This is an incompatible change with the previous state. Users of minizip and pkg-config will need to update their code. #include <unzip.h> will need to be updated to #include <minizip/unzip.h> as well. | ||||
* | Replace autotools macro AC_HELP_STRING with AS_HELP_STRING. | Matthieu Longo | 2024-04-29 | 1 | -1/+1 |
| | | | | In minizip's configure.ac. AC_HELP_STRING is obsolete. | ||||
* | Use z_const for setting msg to literal strings. | Lwisce Zeng | 2024-04-01 | 1 | -12/+12 |
| | |||||
* | Avert minizip warnings for MSVC. | Mark Adler | 2024-03-29 | 5 | -37/+56 |
| | |||||
* | Avoid conversion warning on 32-bit architectures in minizip. | Mark Adler | 2024-03-22 | 1 | -1/+1 |
| | |||||
* | Improve detection of UNIX-style systems in minizip. | Alexander Miller | 2024-03-16 | 4 | -11/+5 |
| | | | | | | | | | | | Not all toolchains on UNIX-style operating systems predefine "unix". For example, it's missing on NetBSD, OpenBSD/gcc, AIX, HP-UX. There is no single macro defined everywhere, but checking both "__unix__" and "__unix" should cover everything except macOS, which is already checked for using "__APPLE__". Note that case sensitivity should default to off on macOS and cygwin, so the check there is different. | ||||
* | Avoid signed shift in minizip zip.c. | Mark Adler | 2024-03-12 | 1 | -1/+1 |
| | |||||
* | Improve random number seeding in skipset.h. | Mark Adler | 2024-03-10 | 1 | -1/+2 |
| | |||||
* | Add zipAlreadyThere() to minizip zip.c to help avoid duplicates. | Mark Adler | 2024-03-10 | 3 | -10/+612 |
| | |||||
* | Permit changing minizip Makefile optimization with CFLAGS. | Mark Adler | 2024-03-09 | 1 | -1/+1 |
| | |||||
* | Further address Microsoft deprecation warnings. | Mark Adler | 2024-02-09 | 1 | -1/+5 |
| | |||||
* | Address Microsoft deprecation warnings. | Mark Adler | 2024-02-08 | 1 | -1/+1 |
| | |||||
* | Fix broken links. | Justin Dhillon | 2024-02-07 | 2 | -575/+575 |
| | |||||
* | Fix version numbers in vstudio definition files. | Mark Adler | 2024-01-28 | 6 | -6/+6 |
| | | | | They can only have a major and a minor version. |