kc3-lang/zlib/zconf.h.cmakein

Branch :


Log

Author Commit Date CI Message
51b7f2ab 2024-01-22 10:14:31 zlib 1.3.1
3f635df9 2024-01-17 18:20:32 Remove unused Z_ARG macro.
9b962a45 2023-04-17 13:59:18 No include file is needed for __int64 type on Windows.
fa8cd50a 2023-01-25 21:00:52 Make z_size_t 64 bits when compiling on Windows with Z_SOLO. Z_SOLO defines z_size_t as an unsigned long. However Windows and MinGW-w64 are LLP64, where a long is 32 bits, but a size_t is 64 bits. This makes z_size_t, used by adler32_z() and crc32_z(), 64 bits on those systems.
19f85516 2022-10-09 17:32:50 Don't try to include unistd.h on Windows with LLVM.
3e4aa458 2022-10-03 08:53:42 Add new crc32 functions to z_ prefix defines.
456775ae 2022-10-03 08:47:03 Add WIN32_LEAN_AND_MEAN for windows.h include.
2fa463ba 2016-12-31 11:41:31 zlib 1.2.9
61b91f27 2016-12-31 16:41:36 Make z_size_t unsigned long for non-standard C. Also declare z_size_t when compiling solo.
cca27e95 2016-12-31 10:03:09 Avoid the need for ssize_t. Limit read() and write() requests to sizes that fit in an int. This allows storing the return value in an int, and avoiding the need to use or construct an ssize_t type. This is required for Microsoft C, whose _read and _write functions take an unsigned request and return an int.