diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:21:57 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:21:57 -0700 |
commit | 13a294f044ef0a89b2dcbfbb5d4d4c792673348e (patch) | |
tree | d9b377b4d8c00633c3da4e96659bfba9b08287f2 /ChangeLog | |
parent | 7c2a874e50b871d04fbd19501f7b42cff55e5abc (diff) | |
download | zlib-13a294f044ef0a89b2dcbfbb5d4d4c792673348e.tar.gz zlib-13a294f044ef0a89b2dcbfbb5d4d4c792673348e.tar.bz2 zlib-13a294f044ef0a89b2dcbfbb5d4d4c792673348e.zip |
zlib 1.2.0.1v1.2.0.1
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 34 |
1 files changed, 29 insertions, 5 deletions
@@ -1,5 +1,29 @@ | |||
1 | 1 | ||
2 | ChangeLog file for zlib | 2 | ChangeLog file for zlib |
3 | Changes in 1.2.0.1 (17 March 2003) | ||
4 | - Add Z_RLE strategy for run-length encoding [Truta] | ||
5 | - When Z_RLE requested, restrict matches to distance one | ||
6 | - Update zlib.h, minigzip.c, gzopen(), gzdopen() for Z_RLE | ||
7 | - Correct FASTEST compilation to allow level == 0 | ||
8 | - Clean up what gets compiled for FASTEST | ||
9 | - Incorporate changes to zconf.in.h [Vollant] | ||
10 | - Refine detection of Turbo C need for dummy returns | ||
11 | - Refine ZLIB_DLL compilation | ||
12 | - Include additional header file on VMS for off_t typedef | ||
13 | - Try to use _vsnprintf where it supplants vsprintf [Vollant] | ||
14 | - Add some casts in inffast.c | ||
15 | - Enchance comments in zlib.h on what happens if the gzprintf() tries to | ||
16 | write more than 4095 bytes before compression | ||
17 | - Remove unused state from inflateBackEnd() | ||
18 | - Remove exit(0) from minigzip.c, example.c | ||
19 | - Get rid of all those darn tabs | ||
20 | - Add "check" target to Makefile.in that does the same thing as "test" | ||
21 | - Add "mostlyclean" and "maintainer-clean" targets to Makefile.in | ||
22 | - Update contrib/inflate86 [Anderson] | ||
23 | - Update contrib/testzlib, contrib/vstudio, contrib/minizip [Vollant] | ||
24 | - Add msdos and win32 directories with makefiles [Truta] | ||
25 | - More additions and improvements to the FAQ | ||
26 | |||
3 | Changes in 1.2.0 (9 March 2003) | 27 | Changes in 1.2.0 (9 March 2003) |
4 | - New and improved inflate code | 28 | - New and improved inflate code |
5 | - About 20% faster | 29 | - About 20% faster |
@@ -236,13 +260,13 @@ Changes in 1.0.6 (19 Jan 1998) | |||
236 | - added Makefile.nt (thanks to Stephen Williams) | 260 | - added Makefile.nt (thanks to Stephen Williams) |
237 | - added the unsupported "contrib" directory: | 261 | - added the unsupported "contrib" directory: |
238 | contrib/asm386/ by Gilles Vollant <info@winimage.com> | 262 | contrib/asm386/ by Gilles Vollant <info@winimage.com> |
239 | 386 asm code replacing longest_match(). | 263 | 386 asm code replacing longest_match(). |
240 | contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu> | 264 | contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu> |
241 | A C++ I/O streams interface to the zlib gz* functions | 265 | A C++ I/O streams interface to the zlib gz* functions |
242 | contrib/iostream2/ by Tyge Løvset <Tyge.Lovset@cmr.no> | 266 | contrib/iostream2/ by Tyge Løvset <Tyge.Lovset@cmr.no> |
243 | Another C++ I/O streams interface | 267 | Another C++ I/O streams interface |
244 | contrib/untgz/ by "Pedro A. Aranda Guti\irrez" <paag@tid.es> | 268 | contrib/untgz/ by "Pedro A. Aranda Guti\irrez" <paag@tid.es> |
245 | A very simple tar.gz file extractor using zlib | 269 | A very simple tar.gz file extractor using zlib |
246 | contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl> | 270 | contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl> |
247 | How to use compress(), uncompress() and the gz* functions from VB. | 271 | How to use compress(), uncompress() and the gz* functions from VB. |
248 | - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression | 272 | - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression |
@@ -269,7 +293,7 @@ Changes in 1.0.6 (19 Jan 1998) | |||
269 | - add NEED_DUMMY_RETURN for Borland | 293 | - add NEED_DUMMY_RETURN for Borland |
270 | - use variable z_verbose for tracing in debug mode (L. Peter Deutsch). | 294 | - use variable z_verbose for tracing in debug mode (L. Peter Deutsch). |
271 | - allow compilation with CC | 295 | - allow compilation with CC |
272 | - defined STDC for OS/2 (David Charlap) | 296 | - defined STDC for OS/2 (David Charlap) |
273 | - limit external names to 8 chars for MVS (Thomas Lund) | 297 | - limit external names to 8 chars for MVS (Thomas Lund) |
274 | - in minigzip.c, use static buffers only for 16-bit systems | 298 | - in minigzip.c, use static buffers only for 16-bit systems |
275 | - fix suffix check for "minigzip -d foo.gz" | 299 | - fix suffix check for "minigzip -d foo.gz" |