OSDN Git Service

* gcj.texi: Fix whitespace and formatting errors in the
[pf3gnuchains/gcc-fork.git] / zlib / ChangeLog
1 2001-06-09  Alexandre Oliva  <aoliva@redhat.com>, Stephen L Moshier  <moshier@mediaone.net>
2
3         * configure.in (AC_EXEEXT): Work around in case it expands to
4         nothing, as in autoconf 2.50.
5         * configure: Rebuilt.
6
7
8                 ChangeLog file for zlib
9
10 Changes in 1.1.3 (9 July 1998)
11 - fix "an inflate input buffer bug that shows up on rare but persistent
12   occasions" (Mark)
13 - fix gzread and gztell for concatenated .gz files (Didier Le Botlan)
14 - fix gzseek(..., SEEK_SET) in write mode
15 - fix crc check after a gzeek (Frank Faubert)
16 - fix miniunzip when the last entry in a zip file is itself a zip file
17   (J Lillge)
18 - add contrib/asm586 and contrib/asm686 (Brian Raiter)
19   See http://www.muppetlabs.com/~breadbox/software/assembly.html
20 - add support for Delphi 3 in contrib/delphi (Bob Dellaca)
21 - add support for C++Builder 3 and Delphi 3 in contrib/delphi2 (Davide Moretti)
22 - do not exit prematurely in untgz if 0 at start of block (Magnus Holmgren)
23 - use macro EXTERN instead of extern to support DLL for BeOS (Sander Stoks)
24 - added a FAQ file
25
26 - Support gzdopen on Mac with Metrowerks (Jason Linhart)
27 - Do not redefine Byte on Mac (Brad Pettit & Jason Linhart)
28 - define SEEK_END too if SEEK_SET is not defined (Albert Chin-A-Young)
29 - avoid some warnings with Borland C (Tom Tanner)
30 - fix a problem in contrib/minizip/zip.c for 16-bit MSDOS (Gilles Vollant)
31 - emulate utime() for WIN32 in contrib/untgz  (Gilles Vollant)
32 - allow several arguments to configure (Tim Mooney, Frodo Looijaard)
33 - use libdir and includedir in Makefile.in (Tim Mooney)
34 - support shared libraries on OSF1 V4 (Tim Mooney)
35 - remove so_locations in "make clean"  (Tim Mooney)
36 - fix maketree.c compilation error (Glenn, Mark)
37 - Python interface to zlib now in Python 1.5 (Jeremy Hylton)
38 - new Makefile.riscos (Rich Walker)
39 - initialize static descriptors in trees.c for embedded targets (Nick Smith)
40 - use "foo-gz" in example.c for RISCOS and VMS (Nick Smith)
41 - add the OS/2 files in Makefile.in too (Andrew Zabolotny)
42 - fix fdopen and halloc macros for Microsoft C 6.0 (Tom Lane)
43 - fix maketree.c to allow clean compilation of inffixed.h (Mark)
44 - fix parameter check in deflateCopy (Gunther Nikl)
45 - cleanup trees.c, use compressed_len only in debug mode (Christian Spieler)
46 - Many portability patches by Christian Spieler:
47   . zutil.c, zutil.h: added "const" for zmem*
48   . Make_vms.com: fixed some typos
49   . Make_vms.com: msdos/Makefile.*: removed zutil.h from some dependency lists
50   . msdos/Makefile.msc: remove "default rtl link library" info from obj files
51   . msdos/Makefile.*: use model-dependent name for the built zlib library
52   . msdos/Makefile.emx, nt/Makefile.emx, nt/Makefile.gcc:
53      new makefiles, for emx (DOS/OS2), emx&rsxnt and mingw32 (Windows 9x / NT)
54 - use define instead of typedef for Bytef also for MSC small/medium (Tom Lane)
55 - replace __far with _far for better portability (Christian Spieler, Tom Lane)
56 - fix test for errno.h in configure (Tim Newsham)
57
58 Changes in 1.1.2 (19 March 98)
59 - added contrib/minzip, mini zip and unzip based on zlib (Gilles Vollant)
60   See http://www.winimage.com/zLibDll/unzip.html
61 - preinitialize the inflate tables for fixed codes, to make the code
62   completely thread safe (Mark)
63 - some simplifications and slight speed-up to the inflate code (Mark)
64 - fix gzeof on non-compressed files (Allan Schrum)
65 - add -std1 option in configure for OSF1 to fix gzprintf (Martin Mokrejs)
66 - use default value of 4K for Z_BUFSIZE for 16-bit MSDOS (Tim Wegner + Glenn)
67 - added os2/Makefile.def and os2/zlib.def (Andrew Zabolotny)
68 - add shared lib support for UNIX_SV4.2MP (MATSUURA Takanori)
69 - do not wrap extern "C" around system includes (Tom Lane)
70 - mention zlib binding for TCL in README (Andreas Kupries)
71 - added amiga/Makefile.pup for Amiga powerUP SAS/C PPC (Andreas Kleinert)
72 - allow "make install prefix=..." even after configure (Glenn Randers-Pehrson)
73 - allow "configure --prefix $HOME" (Tim Mooney)
74 - remove warnings in example.c and gzio.c (Glenn Randers-Pehrson)
75 - move Makefile.sas to amiga/Makefile.sas
76
77 Changes in 1.1.1 (27 Feb 98)
78 - fix macros _tr_tally_* in deflate.h for debug mode  (Glenn Randers-Pehrson)
79 - remove block truncation heuristic which had very marginal effect for zlib
80   (smaller lit_bufsize than in gzip 1.2.4) and degraded a little the
81   compression ratio on some files. This also allows inlining _tr_tally for
82   matches in deflate_slow.
83 - added msdos/Makefile.w32 for WIN32 Microsoft Visual C++ (Bob Frazier)
84
85 Changes in 1.1.0 (24 Feb 98)
86 - do not return STREAM_END prematurely in inflate (John Bowler)
87 - revert to the zlib 1.0.8 inflate to avoid the gcc 2.8.0 bug (Jeremy Buhler)
88 - compile with -DFASTEST to get compression code optimized for speed only
89 - in minigzip, try mmap'ing the input file first (Miguel Albrecht)
90 - increase size of I/O buffers in minigzip.c and gzio.c (not a big gain
91   on Sun but significant on HP)
92
93 - add a pointer to experimental unzip library in README (Gilles Vollant)
94 - initialize variable gcc in configure (Chris Herborth)
95
96 Changes in 1.0.9 (17 Feb 1998)
97 - added gzputs and gzgets functions
98 - do not clear eof flag in gzseek (Mark Diekhans)
99 - fix gzseek for files in transparent mode (Mark Diekhans)
100 - do not assume that vsprintf returns the number of bytes written (Jens Krinke)
101 - replace EXPORT with ZEXPORT to avoid conflict with other programs
102 - added compress2 in zconf.h, zlib.def, zlib.dnt
103 - new asm code from Gilles Vollant in contrib/asm386
104 - simplify the inflate code (Mark):
105  . Replace ZALLOC's in huft_build() with single ZALLOC in inflate_blocks_new()
106  . ZALLOC the length list in inflate_trees_fixed() instead of using stack
107  . ZALLOC the value area for huft_build() instead of using stack
108  . Simplify Z_FINISH check in inflate()
109
110 - Avoid gcc 2.8.0 comparison bug a little differently than zlib 1.0.8
111 - in inftrees.c, avoid cc -O bug on HP (Farshid Elahi)
112 - in zconf.h move the ZLIB_DLL stuff earlier to avoid problems with
113   the declaration of FAR (Gilles VOllant)
114 - install libz.so* with mode 755 (executable) instead of 644 (Marc Lehmann)
115 - read_buf buf parameter of type Bytef* instead of charf*
116 - zmemcpy parameters are of type Bytef*, not charf* (Joseph Strout)
117 - do not redeclare unlink in minigzip.c for WIN32 (John Bowler)
118 - fix check for presence of directories in "make install" (Ian Willis)
119
120 Changes in 1.0.8 (27 Jan 1998)
121 - fixed offsets in contrib/asm386/gvmat32.asm (Gilles Vollant)
122 - fix gzgetc and gzputc for big endian systems (Markus Oberhumer)
123 - added compress2() to allow setting the compression level
124 - include sys/types.h to get off_t on some systems (Marc Lehmann & QingLong)
125 - use constant arrays for the static trees in trees.c instead of computing
126   them at run time (thanks to Ken Raeburn for this suggestion). To create
127   trees.h, compile with GEN_TREES_H and run "make test".
128 - check return code of example in "make test" and display result
129 - pass minigzip command line options to file_compress
130 - simplifying code of inflateSync to avoid gcc 2.8 bug
131
132 - support CC="gcc -Wall" in configure -s (QingLong)
133 - avoid a flush caused by ftell in gzopen for write mode (Ken Raeburn)
134 - fix test for shared library support to avoid compiler warnings
135 - zlib.lib -> zlib.dll in msdos/zlib.rc (Gilles Vollant)
136 - check for TARGET_OS_MAC in addition to MACOS (Brad Pettit)
137 - do not use fdopen for Metrowerks on Mac (Brad Pettit))
138 - add checks for gzputc and gzputc in example.c
139 - avoid warnings in gzio.c and deflate.c (Andreas Kleinert)
140 - use const for the CRC table (Ken Raeburn)
141 - fixed "make uninstall" for shared libraries
142 - use Tracev instead of Trace in infblock.c
143 - in example.c use correct compressed length for test_sync
144 - suppress +vnocompatwarnings in configure for HPUX (not always supported)
145
146 Changes in 1.0.7 (20 Jan 1998)
147 - fix gzseek which was broken in write mode
148 - return error for gzseek to negative absolute position
149 - fix configure for Linux (Chun-Chung Chen)
150 - increase stack space for MSC (Tim Wegner)
151 - get_crc_table and inflateSyncPoint are EXPORTed (Gilles Vollant)
152 - define EXPORTVA for gzprintf (Gilles Vollant)
153 - added man page zlib.3 (Rick Rodgers)
154 - for contrib/untgz, fix makedir() and improve Makefile
155
156 - check gzseek in write mode in example.c
157 - allocate extra buffer for seeks only if gzseek is actually called
158 - avoid signed/unsigned comparisons (Tim Wegner, Gilles Vollant)
159 - add inflateSyncPoint in zconf.h
160 - fix list of exported functions in nt/zlib.dnt and mdsos/zlib.def
161
162 Changes in 1.0.6 (19 Jan 1998)
163 - add functions gzprintf, gzputc, gzgetc, gztell, gzeof, gzseek, gzrewind and
164   gzsetparams (thanks to Roland Giersig and Kevin Ruland for some of this code)
165 - Fix a deflate bug occuring only with compression level 0 (thanks to
166   Andy Buckler for finding this one).
167 - In minigzip, pass transparently also the first byte for .Z files.
168 - return Z_BUF_ERROR instead of Z_OK if output buffer full in uncompress()
169 - check Z_FINISH in inflate (thanks to Marc Schluper)
170 - Implement deflateCopy (thanks to Adam Costello)
171 - make static libraries by default in configure, add --shared option.
172 - move MSDOS or Windows specific files to directory msdos
173 - suppress the notion of partial flush to simplify the interface
174   (but the symbol Z_PARTIAL_FLUSH is kept for compatibility with 1.0.4)
175 - suppress history buffer provided by application to simplify the interface
176   (this feature was not implemented anyway in 1.0.4)
177 - next_in and avail_in must be initialized before calling inflateInit or
178   inflateInit2
179 - add EXPORT in all exported functions (for Windows DLL)
180 - added Makefile.nt (thanks to Stephen Williams)
181 - added the unsupported "contrib" directory:
182    contrib/asm386/ by Gilles Vollant <info@winimage.com>
183         386 asm code replacing longest_match().
184    contrib/iostream/ by Kevin Ruland <kevin@rodin.wustl.edu>
185         A C++ I/O streams interface to the zlib gz* functions
186    contrib/iostream2/  by Tyge Løvset <Tyge.Lovset@cmr.no>
187         Another C++ I/O streams interface
188    contrib/untgz/  by "Pedro A. Aranda Guti\irrez" <paag@tid.es>
189         A very simple tar.gz file extractor using zlib
190    contrib/visual-basic.txt by Carlos Rios <c_rios@sonda.cl>
191         How to use compress(), uncompress() and the gz* functions from VB.
192 - pass params -f (filtered data), -h (huffman only), -1 to -9 (compression
193   level) in minigzip (thanks to Tom Lane)
194
195 - use const for rommable constants in deflate
196 - added test for gzseek and gztell in example.c
197 - add undocumented function inflateSyncPoint() (hack for Paul Mackerras)
198 - add undocumented function zError to convert error code to string
199   (for Tim Smithers)
200 - Allow compilation of gzio with -DNO_DEFLATE to avoid the compression code.
201 - Use default memcpy for Symantec MSDOS compiler.
202 - Add EXPORT keyword for check_func (needed for Windows DLL)
203 - add current directory to LD_LIBRARY_PATH for "make test"
204 - create also a link for libz.so.1
205 - added support for FUJITSU UXP/DS (thanks to Toshiaki Nomura)
206 - use $(SHAREDLIB) instead of libz.so in Makefile.in (for HPUX)
207 - added -soname for Linux in configure (Chun-Chung Chen,
208 - assign numbers to the exported functions in zlib.def (for Windows DLL)
209 - add advice in zlib.h for best usage of deflateSetDictionary
210 - work around compiler bug on Atari (cast Z_NULL in call of s->checkfn)
211 - allow compilation with ANSI keywords only enabled for TurboC in large model
212 - avoid "versionString"[0] (Borland bug)
213 - add NEED_DUMMY_RETURN for Borland
214 - use variable z_verbose for tracing in debug mode (L. Peter Deutsch).
215 - allow compilation with CC
216 - defined STDC for OS/2 (David Charlap) 
217 - limit external names to 8 chars for MVS (Thomas Lund)
218 - in minigzip.c, use static buffers only for 16-bit systems
219 - fix suffix check for "minigzip -d foo.gz"
220 - do not return an error for the 2nd of two consecutive gzflush() (Felix Lee)
221 - use _fdopen instead of fdopen for MSC >= 6.0 (Thomas Fanslau)
222 - added makelcc.bat for lcc-win32 (Tom St Denis)
223 - in Makefile.dj2, use copy and del instead of install and rm (Frank Donahoe)
224 - Avoid expanded $Id: ChangeLog,v 1.1 1999/05/04 19:30:26 tromey Exp $. Use "rcs -kb" or "cvs admin -kb" to avoid Id expansion.
225 - check for unistd.h in configure (for off_t)
226 - remove useless check parameter in inflate_blocks_free
227 - avoid useless assignment of s->check to itself in inflate_blocks_new
228 - do not flush twice in gzclose (thanks to Ken Raeburn)
229 - rename FOPEN as F_OPEN to avoid clash with /usr/include/sys/file.h
230 - use NO_ERRNO_H instead of enumeration of operating systems with errno.h
231 - work around buggy fclose on pipes for HP/UX
232 - support zlib DLL with BORLAND C++ 5.0 (thanks to Glenn Randers-Pehrson)
233 - fix configure if CC is already equal to gcc
234
235 Changes in 1.0.5 (3 Jan 98)
236 - Fix inflate to terminate gracefully when fed corrupted or invalid data
237 - Use const for rommable constants in inflate
238 - Eliminate memory leaks on error conditions in inflate
239 - Removed some vestigial code in inflate
240 - Update web address in README
241   
242 Changes in 1.0.4 (24 Jul 96)
243 - In very rare conditions, deflate(s, Z_FINISH) could fail to produce an EOF
244   bit, so the decompressor could decompress all the correct data but went
245   on to attempt decompressing extra garbage data. This affected minigzip too.
246 - zlibVersion and gzerror return const char* (needed for DLL)
247 - port to RISCOS (no fdopen, no multiple dots, no unlink, no fileno)
248 - use z_error only for DEBUG (avoid problem with DLLs)
249
250 Changes in 1.0.3 (2 Jul 96)
251 - use z_streamp instead of z_stream *, which is now a far pointer in MSDOS
252   small and medium models; this makes the library incompatible with previous
253   versions for these models. (No effect in large model or on other systems.)
254 - return OK instead of BUF_ERROR if previous deflate call returned with
255   avail_out as zero but there is nothing to do
256 - added memcmp for non STDC compilers
257 - define NO_DUMMY_DECL for more Mac compilers (.h files merged incorrectly)
258 - define __32BIT__ if __386__ or i386 is defined (pb. with Watcom and SCO)
259 - better check for 16-bit mode MSC (avoids problem with Symantec)
260
261 Changes in 1.0.2 (23 May 96)
262 - added Windows DLL support
263 - added a function zlibVersion (for the DLL support)
264 - fixed declarations using Bytef in infutil.c (pb with MSDOS medium model)
265 - Bytef is define's instead of typedef'd only for Borland C
266 - avoid reading uninitialized memory in example.c
267 - mention in README that the zlib format is now RFC1950
268 - updated Makefile.dj2
269 - added algorithm.doc
270
271 Changes in 1.0.1 (20 May 96) [1.0 skipped to avoid confusion]
272 - fix array overlay in deflate.c which sometimes caused bad compressed data
273 - fix inflate bug with empty stored block
274 - fix MSDOS medium model which was broken in 0.99
275 - fix deflateParams() which could generated bad compressed data.
276 - Bytef is define'd instead of typedef'ed (work around Borland bug)
277 - added an INDEX file
278 - new makefiles for DJGPP (Makefile.dj2), 32-bit Borland (Makefile.b32),
279   Watcom (Makefile.wat), Amiga SAS/C (Makefile.sas)
280 - speed up adler32 for modern machines without auto-increment
281 - added -ansi for IRIX in configure
282 - static_init_done in trees.c is an int
283 - define unlink as delete for VMS
284 - fix configure for QNX
285 - add configure branch for SCO and HPUX
286 - avoid many warnings (unused variables, dead assignments, etc...)
287 - no fdopen for BeOS
288 - fix the Watcom fix for 32 bit mode (define FAR as empty)
289 - removed redefinition of Byte for MKWERKS
290 - work around an MWKERKS bug (incorrect merge of all .h files)
291
292 Changes in 0.99 (27 Jan 96)
293 - allow preset dictionary shared between compressor and decompressor
294 - allow compression level 0 (no compression)
295 - add deflateParams in zlib.h: allow dynamic change of compression level
296   and compression strategy.
297 - test large buffers and deflateParams in example.c
298 - add optional "configure" to build zlib as a shared library
299 - suppress Makefile.qnx, use configure instead
300 - fixed deflate for 64-bit systems (detected on Cray)
301 - fixed inflate_blocks for 64-bit systems (detected on Alpha)
302 - declare Z_DEFLATED in zlib.h (possible parameter for deflateInit2)
303 - always return Z_BUF_ERROR when deflate() has nothing to do
304 - deflateInit and inflateInit are now macros to allow version checking
305 - prefix all global functions and types with z_ with -DZ_PREFIX
306 - make falloc completely reentrant (inftrees.c)
307 - fixed very unlikely race condition in ct_static_init
308 - free in reverse order of allocation to help memory manager
309 - use zlib-1.0/* instead of zlib/* inside the tar.gz
310 - make zlib warning-free with "gcc -O3 -Wall -Wwrite-strings -Wpointer-arith
311   -Wconversion -Wstrict-prototypes -Wmissing-prototypes"
312 - allow gzread on concatenated .gz files
313 - deflateEnd now returns Z_DATA_ERROR if it was premature
314 - deflate is finally (?) fully deterministic (no matches beyond end of input)
315 - Document Z_SYNC_FLUSH
316 - add uninstall in Makefile
317 - Check for __cpluplus in zlib.h
318 - Better test in ct_align for partial flush
319 - avoid harmless warnings for Borland C++
320 - initialize hash_head in deflate.c
321 - avoid warning on fdopen (gzio.c) for HP cc -Aa
322 - include stdlib.h for STDC compilers
323 - include errno.h for Cray
324 - ignore error if ranlib doesn't exist
325 - call ranlib twice for NeXTSTEP
326 - use exec_prefix instead of prefix for libz.a
327 - renamed ct_* as _tr_* to avoid conflict with applications
328 - clear z->msg in inflateInit2 before any error return
329 - initialize opaque in example.c, gzio.c, deflate.c and inflate.c
330 - fixed typo in zconf.h (_GNUC__ => __GNUC__)
331 - check for WIN32 in zconf.h and zutil.c (avoid farmalloc in 32-bit mode)
332 - fix typo in Make_vms.com (f$trnlnm -> f$getsyi)
333 - in fcalloc, normalize pointer if size > 65520 bytes
334 - don't use special fcalloc for 32 bit Borland C++
335 - use STDC instead of __GO32__ to avoid redeclaring exit, calloc, etc...
336 - use Z_BINARY instead of BINARY
337 - document that gzclose after gzdopen will close the file
338 - allow "a" as mode in gzopen.
339 - fix error checking in gzread
340 - allow skipping .gz extra-field on pipes
341 - added reference to Perl interface in README
342 - put the crc table in FAR data (I dislike more and more the medium model :)
343 - added get_crc_table
344 - added a dimension to all arrays (Borland C can't count).
345 - workaround Borland C bug in declaration of inflate_codes_new & inflate_fast
346 - guard against multiple inclusion of *.h (for precompiled header on Mac)
347 - Watcom C pretends to be Microsoft C small model even in 32 bit mode.
348 - don't use unsized arrays to avoid silly warnings by Visual C++:
349      warning C4746: 'inflate_mask' : unsized array treated as  '__far'
350      (what's wrong with far data in far model?).
351 - define enum out of inflate_blocks_state to allow compilation with C++
352
353 Changes in 0.95 (16 Aug 95)
354 - fix MSDOS small and medium model (now easier to adapt to any compiler)
355 - inlined send_bits
356 - fix the final (:-) bug for deflate with flush (output was correct but
357   not completely flushed in rare occasions).
358 - default window size is same for compression and decompression
359   (it's now sufficient to set MAX_WBITS in zconf.h).
360 - voidp -> voidpf and voidnp -> voidp (for consistency with other
361   typedefs and because voidnp was not near in large model).
362
363 Changes in 0.94 (13 Aug 95)
364 - support MSDOS medium model
365 - fix deflate with flush (could sometimes generate bad output)
366 - fix deflateReset (zlib header was incorrectly suppressed)
367 - added support for VMS
368 - allow a compression level in gzopen()
369 - gzflush now calls fflush
370 - For deflate with flush, flush even if no more input is provided.
371 - rename libgz.a as libz.a
372 - avoid complex expression in infcodes.c triggering Turbo C bug
373 - work around a problem with gcc on Alpha (in INSERT_STRING)
374 - don't use inline functions (problem with some gcc versions)
375 - allow renaming of Byte, uInt, etc... with #define.
376 - avoid warning about (unused) pointer before start of array in deflate.c
377 - avoid various warnings in gzio.c, example.c, infblock.c, adler32.c, zutil.c
378 - avoid reserved word 'new' in trees.c
379
380 Changes in 0.93 (25 June 95)
381 - temporarily disable inline functions
382 - make deflate deterministic
383 - give enough lookahead for PARTIAL_FLUSH
384 - Set binary mode for stdin/stdout in minigzip.c for OS/2
385 - don't even use signed char in inflate (not portable enough)
386 - fix inflate memory leak for segmented architectures
387
388 Changes in 0.92 (3 May 95)
389 - don't assume that char is signed (problem on SGI)
390 - Clear bit buffer when starting a stored block
391 - no memcpy on Pyramid
392 - suppressed inftest.c
393 - optimized fill_window, put longest_match inline for gcc
394 - optimized inflate on stored blocks.
395 - untabify all sources to simplify patches
396
397 Changes in 0.91 (2 May 95)
398 - Default MEM_LEVEL is 8 (not 9 for Unix) as documented in zlib.h
399 - Document the memory requirements in zconf.h
400 - added "make install"
401 - fix sync search logic in inflateSync
402 - deflate(Z_FULL_FLUSH) now works even if output buffer too short
403 - after inflateSync, don't scare people with just "lo world"
404 - added support for DJGPP
405
406 Changes in 0.9 (1 May 95)
407 - don't assume that zalloc clears the allocated memory (the TurboC bug
408   was Mark's bug after all :)
409 - let again gzread copy uncompressed data unchanged (was working in 0.71)
410 - deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented
411 - added a test of inflateSync in example.c
412 - moved MAX_WBITS to zconf.h because users might want to change that.
413 - document explicitly that zalloc(64K) on MSDOS must return a normalized
414   pointer (zero offset)
415 - added Makefiles for Microsoft C, Turbo C, Borland C++
416 - faster crc32()
417
418 Changes in 0.8 (29 April 95)
419 - added fast inflate (inffast.c)
420 - deflate(Z_FINISH) now returns Z_STREAM_END when done. Warning: this
421   is incompatible with previous versions of zlib which returned Z_OK.
422 - work around a TurboC compiler bug (bad code for b << 0, see infutil.h)
423   (actually that was not a compiler bug, see 0.81 above)
424 - gzread no longer reads one extra byte in certain cases
425 - In gzio destroy(), don't reference a freed structure
426 - avoid many warnings for MSDOS
427 - avoid the ERROR symbol which is used by MS Windows
428
429 Changes in 0.71 (14 April 95)
430 - Fixed more MSDOS compilation problems :( There is still a bug with
431   TurboC large model.
432
433 Changes in 0.7 (14 April 95)
434 - Added full inflate support.
435 - Simplified the crc32() interface. The pre- and post-conditioning
436   (one's complement) is now done inside crc32(). WARNING: this is
437   incompatible with previous versions; see zlib.h for the new usage.
438
439 Changes in 0.61 (12 April 95)
440 - workaround for a bug in TurboC. example and minigzip now work on MSDOS.
441
442 Changes in 0.6 (11 April 95)
443 - added minigzip.c
444 - added gzdopen to reopen a file descriptor as gzFile
445 - added transparent reading of non-gziped files in gzread.
446 - fixed bug in gzread (don't read crc as data)
447 - fixed bug in destroy (gzio.c) (don't return Z_STREAM_END for gzclose).
448 - don't allocate big arrays in the stack (for MSDOS)
449 - fix some MSDOS compilation problems
450
451 Changes in 0.5:
452 - do real compression in deflate.c. Z_PARTIAL_FLUSH is supported but
453   not yet Z_FULL_FLUSH.
454 - support decompression but only in a single step (forced Z_FINISH)
455 - added opaque object for zalloc and zfree.
456 - added deflateReset and inflateReset
457 - added a variable zlib_version for consistency checking.
458 - renamed the 'filter' parameter of deflateInit2 as 'strategy'.
459   Added Z_FILTERED and Z_HUFFMAN_ONLY constants.
460
461 Changes in 0.4:
462 - avoid "zip" everywhere, use zlib instead of ziplib.
463 - suppress Z_BLOCK_FLUSH, interpret Z_PARTIAL_FLUSH as block flush
464   if compression method == 8.
465 - added adler32 and crc32
466 - renamed deflateOptions as deflateInit2, call one or the other but not both
467 - added the method parameter for deflateInit2.
468 - added inflateInit2
469 - simplied considerably deflateInit and inflateInit by not supporting
470   user-provided history buffer. This is supported only in deflateInit2
471   and inflateInit2.
472
473 Changes in 0.3:
474 - prefix all macro names with Z_
475 - use Z_FINISH instead of deflateEnd to finish compression.
476 - added Z_HUFFMAN_ONLY
477 - added gzerror()