aboutsummaryrefslogtreecommitdiff
path: root/contrib (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix Ada bindings on x64.spectralio2025-02-051-1/+2
|
* CMake: Make USE_FILE32API part of the interface.Vollstrecker2025-01-311-12/+8
|
* CMake: Give minizip a suffix on Cygwin as well.Vollstrecker2025-01-311-2/+2
|
* CMake: Clean up spaces in required versions.Vollstrecker2025-01-314-4/+4
|
* CMake: Add the tested version of cmake (3.31).Vollstrecker2025-01-314-4/+4
| | | | Per @ClausKlein suggestion.
* CMake: Include bzip2 in the interface.Vollstrecker2025-01-312-7/+16
|
* CMake: Fix typo.Vollstrecker2025-01-311-1/+1
|
* CMake: Add cmake-format.yaml and reformat the cmake files.Vollstrecker2025-01-316-295/+265
|
* CMake: Disable bzip2 for tests.Vollstrecker2025-01-312-0/+2
| | | | It's not installed everywhere.
* CMake: Restore lost variable.Vollstrecker2025-01-311-0/+1
|
* CMake: Correct wording for minizip options.Vollstrecker2025-01-311-2/+2
|
* CMake: Add components selection.Vollstrecker2025-01-312-16/+39
|
* CMake: Refine tests.Vollstrecker2025-01-314-117/+110
|
* CMake: Do not link to bzip2.Vollstrecker2025-01-311-11/+2
|
* CMake: Clean up formatting.Vollstrecker2025-01-311-3/+1
|
* CMake: Search for zlib by CONFIG to get all needed targets.Vollstrecker2025-01-311-1/+1
|
* CMake: Make bzip2 required if it's requested.Vollstrecker2025-01-311-1/+1
|
* CMake: Avoid double inclusion of CPack warning.Vollstrecker2025-01-311-0/+4
|
* CMake: Order the includes consistently.Vollstrecker2025-01-311-2/+2
|
* CMake: Make bzip2 optional.Vollstrecker2025-01-311-2/+4
|
* CMake: Uncomment stop sign.Vollstrecker2025-01-311-1/+1
|
* CMake: Depend on bzip2 only if it's found.Vollstrecker2025-01-311-1/+1
|
* CMake: Add CPack.Vollstrecker2025-01-311-5/+19
|
* Correct one more comment style in minizip.Vollstrecker2025-01-311-1/+1
|
* CMake: Prevent a 32-bit minizip build.Vollstrecker2025-01-311-0/+5
|
* Use consistent comment style in minizip.Vollstrecker2025-01-318-197/+197
|
* CMake: Increase CMake version to 3.12 for minizip tests.Vollstrecker2025-01-313-4/+4
| | | | And look for ZLIB package.
* CMake: Make minizip search for config.Werner2025-01-311-1/+1
|
* CMake: Change to FindZLIB and ZLIB.cmake.Werner2025-01-312-2/+2
|
* CMake: Install ints.h for minizip.Werner2025-01-311-0/+1
|
* CMake: Rename exports of minizip.Werner2025-01-312-10/+19
| | | | minizip-ng has prior art.
* CMake: Add minizip.Vollstrecker2025-01-318-0/+645
|
* Avoid the use of a reserved macro name in contrib/minizip/ioapi.h.Mark Adler2024-09-011-2/+2
|
* Add header file dependencies to contrib/minizip/Makefile.Mark Adler2024-07-311-3/+11
|
* Avoid use of stdint.h in contrib/minizip.Mark Adler2024-07-315-51/+90
|
* Add deflateUsed() function to get the used bits in the last byte.Mark Adler2024-07-016-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 Adler2024-06-041-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 Longo2024-04-291-1/+1
| | | | In minizip's configure.ac. AC_HELP_STRING is obsolete.
* Use z_const for setting msg to literal strings.Lwisce Zeng2024-04-011-12/+12
|
* Avert minizip warnings for MSVC.Mark Adler2024-03-295-37/+56
|
* Avoid conversion warning on 32-bit architectures in minizip.Mark Adler2024-03-221-1/+1
|
* Improve detection of UNIX-style systems in minizip.Alexander Miller2024-03-164-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 Adler2024-03-121-1/+1
|
* Improve random number seeding in skipset.h.Mark Adler2024-03-101-1/+2
|
* Add zipAlreadyThere() to minizip zip.c to help avoid duplicates.Mark Adler2024-03-103-10/+612
|
* Permit changing minizip Makefile optimization with CFLAGS.Mark Adler2024-03-091-1/+1
|
* Further address Microsoft deprecation warnings.Mark Adler2024-02-091-1/+5
|
* Address Microsoft deprecation warnings.Mark Adler2024-02-081-1/+1
|
* Fix broken links.Justin Dhillon2024-02-072-575/+575
|
* Fix version numbers in vstudio definition files.Mark Adler2024-01-286-6/+6
| | | | They can only have a major and a minor version.