]> git.lizzy.rs Git - zlib.git/blob - README
zlib 1.0.1
[zlib.git] / README
1 zlib 1.0.1 is a general purpose data compression library.  All the code
2 is reentrant (thread safe).  The data format used by the zlib library
3 is described in the files zlib-3.3.doc, deflate-1.3.doc and
4 gzip-4.3.doc, available in various formats from
5 ftp://swrinde.nde.swri.edu/pub/png/documents/zlib/
6
7 All functions of the compression library are documented in the file
8 zlib.h. A usage example of the library is given in the file example.c
9 which also tests that the library is working correctly. Another
10 example is given in the file minigzip.c. The compression library itself
11 is composed of all source files except example.c and minigzip.c.
12
13 To compile all files and run the test program, follow the instructions
14 given at the top of Makefile. In short "make test; make install"
15 should work for most machines.  For MSDOS, use one of the special
16 makefiles such as Makefile.msc; for VMS, use Make_vms.com or descrip.mms.
17
18 Questions about zlib should be sent to <zlib@quest.jpl.nasa.gov> or,
19 if this fails, to the addresses given below in the Copyright section.
20
21 The changes made in version 1.0.1 are documented in the file ChangeLog.
22 Version number 1.0 was skipped to avoid confusion with version 0.99
23 which had some references to 1.0 already. The main changes since 0.99 are:
24
25 - fix array overlay in deflate.c which sometimes caused bad compressed data
26 - fix inflate bug with empty stored block
27 - fix MSDOS medium model which was broken in 0.99
28 - fix deflateParams() which could generated bad compressed data.
29 - added an INDEX file
30 - new makefiles for DJGPP (Makefile.dj2), 32-bit Borland (Makefile.b32),
31   Watcom (Makefile.wat), Amiga SAS/C (Makefile.sas)
32 - several portability improvements
33
34 Notes for some targets:
35
36 - For Turbo C the small model is supported only with reduced performance to
37   avoid any far allocation; it was tested with -DMAX_WBITS=11 -DMAX_MEM_LEVEL=3
38
39 - For 64-bit Iris, deflate.c must be compiled without any optimization.
40   With -O, one libpng test fails. The test works in 32 bit mode (with
41   the -32 compiler flag).
42
43 - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1   
44   it works when compiled with cc.
45
46 - zlib doesn't work on HP-UX 9.05 with one cc compiler (the one not
47   accepting the -O option). It works with the other cc compiler.
48
49 A Perl interface to zlib written by Paul Marquess <pmarquess@bfsec.bt.co.uk>
50 is in the CPAN (Comprehensive Perl Archive Network) sites, such as:
51 ftp://ftp.cis.ufl.edu/pub/perl/CPAN/modules/by-module/Compress/Compress-Zlib*
52
53
54 Acknowledgments:
55
56   The deflate format used by zlib was defined by Phil Katz. The deflate
57   and zlib specifications were written by Peter Deutsch. Thanks to all the
58   people who reported problems and suggested various improvements in zlib;
59   they are too numerous to cite here.
60
61 Copyright notice:
62
63  (C) 1995-1996 Jean-loup Gailly and Mark Adler
64
65   This software is provided 'as-is', without any express or implied
66   warranty.  In no event will the authors be held liable for any damages
67   arising from the use of this software.
68
69   Permission is granted to anyone to use this software for any purpose,
70   including commercial applications, and to alter it and redistribute it
71   freely, subject to the following restrictions:
72
73   1. The origin of this software must not be misrepresented; you must not
74      claim that you wrote the original software. If you use this software
75      in a product, an acknowledgment in the product documentation would be
76      appreciated but is not required.
77   2. Altered source versions must be plainly marked as such, and must not be
78      misrepresented as being the original software.
79   3. This notice may not be removed or altered from any source distribution.
80
81   Jean-loup Gailly        Mark Adler
82   gzip@prep.ai.mit.edu    madler@alumni.caltech.edu
83
84 If you use the zlib library in a product, we would appreciate *not*
85 receiving lengthy legal documents to sign. The sources are provided
86 for free but without warranty of any kind.  The library has been
87 entirely written by Jean-loup Gailly and Mark Adler; it does not
88 include third-party code.
89
90 If you redistribute modified sources, we would appreciate that you include
91 in the file ChangeLog history information documenting your changes.