kc3-lang/zlib/win32

Branch :


Log

Author Commit Date CI Message
51b7f2ab 2024-01-22 10:14:31 zlib 1.3.1
25263462 2024-01-17 17:19:03 Remove mentions of an official zlib DLL distribution. There used to be one, but no more. It is up to the user or vendor to compile zlib.
643e17b7 2023-11-14 16:23:02 Correct repeated words in source file comments and a readme.
3a98b57e 2023-08-18 13:15:24 Change version number on develop branch to 1.3.0.1.
09155eaa 2023-08-18 01:45:36 zlib 1.3
41fda48f 2022-10-15 09:02:21 Change version number on develop branch to 1.2.13.1.
04f42cec 2022-10-12 17:54:34 zlib 1.2.13
cc8d08c2 2022-10-05 18:50:58 Update copyright year in win32/zlib1.rc.
a4c17581 2022-03-27 18:07:49 Change version number on develop branch to 1.2.12.1.
21767c65 2022-03-27 15:47:03 zlib 1.2.12
288f1080 2017-10-12 20:08:53 Remove old assembler code in which bugs have manifested. In addition, there is not sufficient gain from the inflate assembler code to warrant its inclusion.
7d60b867 2017-01-15 22:46:03 Change version number to 1.2.11.1.
cacf7f1d 2017-01-15 09:18:46 zlib 1.2.11
74d2696d 2017-01-04 23:18:55 Update location of Visual Studio project files.
11ceaed7 2017-01-15 08:54:04 Change version number to 1.2.10.1.
4a090ade 2017-01-02 17:53:59 zlib 1.2.10
20e47254 2017-01-01 22:21:21 Change version number to zlib 1.2.9.1.
2fa463ba 2016-12-31 11:41:31 zlib 1.2.9
51a223de 2015-07-28 22:44:31 Avoid use of DEBUG macro -- change to ZLIB_DEBUG.
ceeb615f 2013-05-02 23:12:54 Change version number to 1.2.8.1.
f5ec2634 2013-04-18 21:38:15 Update some copyright years.
e8fee0ea 2013-04-13 21:38:26 Change version number to 1.2.8.
388a285c 2013-04-13 18:58:46 Change version number to 1.2.7.3.
9b703f20 2013-04-13 17:54:57 Fix typo in win32/Makefile.msc.
8a93f49c 2013-04-13 08:08:57 Change version number to 1.2.7.2.
0aac8cf7 2013-03-23 23:47:15 Clean up the addition of gzvprintf.
64a77fac 2012-12-20 12:36:55 Add TOP support to win32/Makefile.msc. Facilitate multi-platform compilation, e.g.: nmake -f pathto\zlib\win32\Makefile.msc TOP=pathto\zlib
d0c73312 2012-06-07 01:25:36 Update copyright year in win32/zlib1.rc.
dca9e1d6 2012-05-26 10:37:17 Add inflateGetDictionary() function.
2689b3cc 2012-05-02 22:38:26 Change version number to 1.2.7.1.
1b09651f 2012-05-02 20:17:59 Add instructions to win32/Makefile.gcc for shared install [Torri].
dbe0bed7 2012-03-16 20:53:09 Add gzopen_w() in Windows for wide character path names.
9c08a822 2012-03-12 22:21:24 Move obsolete emx makefile to old [Truta].
142f051f 2012-03-12 22:18:36 Remove unneeded EXTRA_CFLAGS from win32/Makefile.gcc [Truta].
e076ca8e 2012-03-10 09:58:37 Fix comments in win32/Makefile.gcc for proper usage.
9f4d9052 2012-03-09 01:29:46 Add DESTDIR support to mingw32 win32/Makefile.gcc.
8435052a 2012-02-19 22:36:40 Update version numbers and year in win32/README-WIN32.txt.
d81e7213 2012-02-18 14:10:20 Restore gzgetc_ for backward compatibility with 1.2.6.
455adc30 2012-02-13 23:34:48 Expunge gzgetc_ from configuration files.
55b8b5fe 2012-02-01 23:25:34 Put gzflags() functionality back in zutil.c. gzflags() was put in gzwrite.c in order to be compiled exactly the same as gzprintf(), so that it was guaranteed to return the correct information. However that causes a static linkage to zlib to bring in many routines that are often not used. All that is required to duplicate the compilation environment of gzprintf() is to include gzguts.h. So that is now done in zutil.c to assure that the correct flags are returned.
8fbd9f13 2012-01-29 08:53:53 Exit when required parameters not provided to win32/Makefile.gcc.
4a9e4dff 2012-01-16 17:57:42 Correct suggested usages in win32/Makefile.msc [שחר, Horvath].
bafcad90 2011-12-23 20:56:27 Update win32/Makefile.gcc to build test/*.c [Truta].
7de4b03b 2011-12-18 22:20:02 Update win32/Makefile.msc to build test/*.c [Truta].
3d85f02a 2011-12-18 14:47:08 Restore gzgetc function for binary compatibility. Newly compiled applications will use the gzgetc macro.
afe7cf78 2011-12-07 23:57:37 Enable dictionary setting in middle of stream, and keeping the dictionary. This patch adds the deflateResetKeep() function to retain the sliding window for the next deflate operation, and fixes an inflateResetKeep() problem that came from inflate() not updating the window when the stream completed. This enables constructing and decompressing a series of concatenated deflate streams where each can depend on the history of uncompressed data that precedes it. This generalizes deflateSetDictionary() and inflateSetDictionary() to permit setting the dictionary in the middle of a stream for raw deflate and inflate. This in combination with the Keep functions enables a scheme for updating files block by block with the transmission of compressed data, where blocks are sent with deflateResetKeep() to retain history for better compression, and deflateSetDictionary() is used for blocks already present at the receiver to skip compression but insert that data in the history, again for better compression. The corresponding inflate calls are done on the receiver side.
1b57de3a 2011-11-21 18:56:02 Move example.c and minigzip.c to test/.
77b47d55 2011-10-07 23:00:42 Add undocumented inflateResetKeep() function for CAB file decoding. The Microsoft CAB file format compresses each block with completed deflate streams that depend on the sliding window history of the previous block in order to decode. inflateResetKeep() does what inflateReset() does, except the sliding window history from the previous inflate operation is retained.
00c836e3 2011-10-02 11:15:00 Merge vestigial vsnprintf determination from zutil.h to gzguts.h. This also moves some of the same from zconf.h to gzguts.h. A new function, gzflags(), was created to pass the compilation flags related to vsnprintf usage back to zlibCompileFlags() in zutil.c. In the process, various compiler configuration files were updated to include gzflags(), as well as the new gzgetc_() function added when the gzgetc() macro was introduced in a previous patch.
7142fcfe 2011-09-18 21:46:44 Always add large file support for windows
10daf0d4 2011-09-11 11:04:49 zlib 1.2.5.1
9712272c 2011-09-09 23:35:10 zlib 1.2.5
73014202 2011-09-09 23:34:55 zlib 1.2.4.5
a7d70663 2011-09-09 23:34:45 zlib 1.2.4.4
7147f24c 2011-09-09 23:34:30 zlib 1.2.4.2
05d47d26 2011-09-09 23:34:22 zlib 1.2.4.1
a1141160 2011-09-09 23:33:59 zlib 1.2.4
59ca2179 2011-09-09 23:33:23 zlib 1.2.4-pre2
67cc20d0 2011-09-09 23:32:36 zlib 1.2.4-pre1
7751bd4c 2011-09-09 23:27:26 zlib 1.2.3.9
7df877ec 2011-09-09 23:27:08 zlib 1.2.3.7
d004b047 2011-09-09 23:26:49 zlib 1.2.3.5
f6194ef3 2011-09-09 23:26:40 zlib 1.2.3.4
b1c19ca6 2011-09-09 23:25:27 zlib 1.2.3.1
abf180a0 2011-09-09 23:25:17 zlib 1.2.3
9c3a5830 2011-09-09 23:24:52 zlib 1.2.2.4
6b8233bf 2011-09-09 23:24:43 zlib 1.2.2.3
0484693e 2011-09-09 23:24:33 zlib 1.2.2.2
9811b53d 2011-09-09 23:24:24 zlib 1.2.2.1
79fbcdc9 2011-09-09 23:24:02 zlib 1.2.2
7a695576 2011-09-09 23:23:45 zlib 1.2.1.2
f0e76a66 2011-09-09 23:23:38 zlib 1.2.1.1
7a33a861 2011-09-09 23:23:27 zlib 1.2.1
a2506218 2011-09-09 23:23:14 zlib 1.2.0.8
b97ec631 2011-09-09 23:23:01 zlib 1.2.0.7
f81ba93d 2011-09-09 23:22:48 zlib 1.2.0.6
4b5a43a2 2011-09-09 23:22:37 zlib 1.2.0.5
8e34b3a8 2011-09-09 23:22:10 zlib 1.2.0.2
13a294f0 2011-09-09 23:21:57 zlib 1.2.0.1