aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Check multiple architectures in *BSD workflows.Vollstrecker2026-01-271-7/+29
|
* Remove anding operations in others workflow.Vollstrecker2026-01-271-18/+18
|
* Add workflow for FreeBSD.Vollstrecker2026-01-271-0/+17
|
* Sort jobs in others workflow.Vollstrecker2026-01-271-24/+26
|
* Add workflow for Solaris.Vollstrecker2026-01-271-0/+18
|
* Use copyback: false to improve workflow actions efficiency.Vollstrecker2026-01-271-0/+5
|
* Add workflow for DragonflyBSD.Vollstrecker2026-01-271-2/+16
|
* Add workflow for OpenBSD.Vollstrecker2026-01-271-0/+20
|
* Add workflow for NetBSD.Vollstrecker2026-01-271-2/+23
|
* Add workflow for OpenIndiana.Vollstrecker2026-01-271-1/+17
|
* CMake: Fix compile for OmniOS.Vollstrecker2026-01-271-3/+5
|
* Add workflow for OmniOS.Vollstrecker2026-01-271-0/+20
|
* Make z_once() local to avoid conditional external symbols.Mark Adler2026-01-185-77/+74
|
* Move new external names to correct location in zlib.map.Mark Adler2026-01-181-2/+4
|
* CMake: Add install-target for contrib/testzlib.Vollstrecker2026-01-121-5/+27
|
* CMake: Make final fixes for Windows.Vollstrecker2026-01-129-40/+74
|
* CMake: Add integration tests.Vollstrecker2026-01-1225-2/+1015
|
* CMake: Fix MSVC build.Vollstrecker2026-01-121-0/+5
|
* CMake: Name tests consistently.Vollstrecker2026-01-125-82/+87
|
* CMake: Name targets consistently.Vollstrecker2026-01-124-27/+33
|
* CMake: Make it work with add_subdirectory.Vollstrecker2026-01-123-5/+55
|
* CMake: Add install and exports.Vollstrecker2026-01-125-6/+186
|
* CMake: Make the options available in cmake-gui.Vollstrecker2026-01-121-3/+3
|
* CMake: Added contrib/testzlib.Vollstrecker2026-01-122-0/+26
|
* CMake: Added contrib/puff.Vollstrecker2026-01-125-0/+235
|
* CMake: Removed bogus module-path.Vollstrecker2026-01-121-2/+0
|
* CMake: Moved everything to functions for consistency.Vollstrecker2026-01-121-44/+39
|
* CMake: Added contrib/iostream3.Vollstrecker2026-01-123-2/+103
|
* CMake: Unify the options.Vollstrecker2026-01-123-46/+50
|
* CMake: Added contrib/infback9.Vollstrecker2026-01-122-0/+23
|
* CMake: Added contrib/gcc_gvmat64.Vollstrecker2026-01-122-0/+21
|
* CMake: Filter out optimisation flags for the ada binder.Vollstrecker2026-01-121-0/+6
|
* CMake: Clean out unneeded stuff.Vollstrecker2026-01-121-16/+0
|
* CMake: Added contrib/blast.Vollstrecker2026-01-127-49/+171
|
* CMake: Added contrib/ada.Vollstrecker2026-01-1211-0/+676
|
* CMake: Set defaults for contrib/minizip from contrib.Vollstrecker2026-01-121-0/+3
|
* CMake: Move contrib options out of main file.Vollstrecker2026-01-122-4/+6
|
* Remove old subdirectory.Mark Adler2026-01-127-618/+0
|
* Add _z versions of the compress and uncompress functions.Mark Adler2026-01-1215-43/+148
| | | | Provide size_t arguments for Windows, on which a long is 32 bits.
* Remove untgz from contrib.Mark Adler2026-01-124-701/+0
|
* Zero inflate state on allocation.Mark Adler2026-01-111-0/+2
| | | | To further guard against the propagation of uninitialized memory.
* Copy only the initialized deflate state in deflateCopy.Mark Adler2026-01-102-5/+17
| | | | | To avoid the propagation and possible disclosure of uninitialized memory contents.
* Correct #endif comment in trees.c.Mark Adler2026-01-101-1/+1
|
* Add --undefined option to ./configure for UBSan checker.Mark Adler2026-01-101-0/+5
|
* Correct macro name for ZLIB_INSECURE in c-std.yml.Mark Adler2026-01-061-3/+3
|
* Add compiler options to standards in c-std.yml for ZLIB_INSECURE.Mark Adler2026-01-061-6/+3
|
* Add definition of ZLIB_INSECURE to build tests with c89 and c94.Mark Adler2026-01-061-0/+6
|
* Avoid Visual C warning in gzread.c.Mark Adler2026-01-051-1/+1
|
* Fix links to Mark Nelson's zlib article, now hosted on zlib.net.Mark Adler2026-01-054-3/+3
|
* Use atomics to build inflate fixed tables once.Mark Adler2026-01-0513-345/+309
| | | | | | | | | | | | This moves the once code from crc32.c to zutil.c, and uses it also for building the inflate fixed tables when BUILDFIXED is defined. The fixed tables are now housed in inftrees.c, shared by inflate.c and infback.c. The once() function is now external, and so is renamed to z_once() to avoid name collisions. If either BUILDFIXED or DYNAMIC_CRC_TABLE is defined, and atomics are not available, then a warning is issued noting that zlib is not thread-safe.