README revision 1.1 1 1.1 christos ZLIB DATA COMPRESSION LIBRARY
2 1.1 christos
3 1.1 christos zlib 1.2.3 is a general purpose data compression library. All the code is
4 1.1 christos thread safe. The data format used by the zlib library is described by RFCs
5 1.1 christos (Request for Comments) 1950 to 1952 in the files
6 1.1 christos http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
7 1.1 christos and rfc1952.txt (gzip format). These documents are also available in other
8 1.1 christos formats from ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html
9 1.1 christos
10 1.1 christos All functions of the compression library are documented in the file zlib.h
11 1.1 christos (volunteer to write man pages welcome, contact zlib (a] gzip.org). A usage example
12 1.1 christos of the library is given in the file example.c which also tests that the library
13 1.1 christos is working correctly. Another example is given in the file minigzip.c. The
14 1.1 christos compression library itself is composed of all source files except example.c and
15 1.1 christos minigzip.c.
16 1.1 christos
17 1.1 christos To compile all files and run the test program, follow the instructions given at
18 1.1 christos the top of Makefile. In short "make test; make install" should work for most
19 1.1 christos machines. For Unix: "./configure; make test; make install". For MSDOS, use one
20 1.1 christos of the special makefiles such as Makefile.msc. For VMS, use make_vms.com.
21 1.1 christos
22 1.1 christos Questions about zlib should be sent to <zlib (a] gzip.org>, or to Gilles Vollant
23 1.1 christos <info (a] winimage.com> for the Windows DLL version. The zlib home page is
24 1.1 christos http://www.zlib.org or http://www.gzip.org/zlib/ Before reporting a problem,
25 1.1 christos please check this site to verify that you have the latest version of zlib;
26 1.1 christos otherwise get the latest version and check whether the problem still exists or
27 1.1 christos not.
28 1.1 christos
29 1.1 christos PLEASE read the zlib FAQ http://www.gzip.org/zlib/zlib_faq.html before asking
30 1.1 christos for help.
31 1.1 christos
32 1.1 christos Mark Nelson <markn (a] ieee.org> wrote an article about zlib for the Jan. 1997
33 1.1 christos issue of Dr. Dobb's Journal; a copy of the article is available in
34 1.1 christos http://dogma.net/markn/articles/zlibtool/zlibtool.htm
35 1.1 christos
36 1.1 christos The changes made in version 1.2.3 are documented in the file ChangeLog.
37 1.1 christos
38 1.1 christos Unsupported third party contributions are provided in directory "contrib".
39 1.1 christos
40 1.1 christos A Java implementation of zlib is available in the Java Development Kit
41 1.1 christos http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip/package-summary.html
42 1.1 christos See the zlib home page http://www.zlib.org for details.
43 1.1 christos
44 1.1 christos A Perl interface to zlib written by Paul Marquess <pmqs (a] cpan.org> is in the
45 1.1 christos CPAN (Comprehensive Perl Archive Network) sites
46 1.1 christos http://www.cpan.org/modules/by-module/Compress/
47 1.1 christos
48 1.1 christos A Python interface to zlib written by A.M. Kuchling <amk (a] amk.ca> is
49 1.1 christos available in Python 1.5 and later versions, see
50 1.1 christos http://www.python.org/doc/lib/module-zlib.html
51 1.1 christos
52 1.1 christos A zlib binding for TCL written by Andreas Kupries <a.kupries (a] westend.com> is
53 1.1 christos availlable at http://www.oche.de/~akupries/soft/trf/trf_zip.html
54 1.1 christos
55 1.1 christos An experimental package to read and write files in .zip format, written on top
56 1.1 christos of zlib by Gilles Vollant <info (a] winimage.com>, is available in the
57 1.1 christos contrib/minizip directory of zlib.
58 1.1 christos
59 1.1 christos
60 1.1 christos Notes for some targets:
61 1.1 christos
62 1.1 christos - For Windows DLL versions, please see win32/DLL_FAQ.txt
63 1.1 christos
64 1.1 christos - For 64-bit Irix, deflate.c must be compiled without any optimization. With
65 1.1 christos -O, one libpng test fails. The test works in 32 bit mode (with the -n32
66 1.1 christos compiler flag). The compiler bug has been reported to SGI.
67 1.1 christos
68 1.1 christos - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1 it works
69 1.1 christos when compiled with cc.
70 1.1 christos
71 1.1 christos - On Digital Unix 4.0D (formely OSF/1) on AlphaServer, the cc option -std1 is
72 1.1 christos necessary to get gzprintf working correctly. This is done by configure.
73 1.1 christos
74 1.1 christos - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with
75 1.1 christos other compilers. Use "make test" to check your compiler.
76 1.1 christos
77 1.1 christos - gzdopen is not supported on RISCOS, BEOS and by some Mac compilers.
78 1.1 christos
79 1.1 christos - For PalmOs, see http://palmzlib.sourceforge.net/
80 1.1 christos
81 1.1 christos - When building a shared, i.e. dynamic library on Mac OS X, the library must be
82 1.1 christos installed before testing (do "make install" before "make test"), since the
83 1.1 christos library location is specified in the library.
84 1.1 christos
85 1.1 christos
86 1.1 christos Acknowledgments:
87 1.1 christos
88 1.1 christos The deflate format used by zlib was defined by Phil Katz. The deflate
89 1.1 christos and zlib specifications were written by L. Peter Deutsch. Thanks to all the
90 1.1 christos people who reported problems and suggested various improvements in zlib;
91 1.1 christos they are too numerous to cite here.
92 1.1 christos
93 1.1 christos Copyright notice:
94 1.1 christos
95 1.1 christos (C) 1995-2004 Jean-loup Gailly and Mark Adler
96 1.1 christos
97 1.1 christos This software is provided 'as-is', without any express or implied
98 1.1 christos warranty. In no event will the authors be held liable for any damages
99 1.1 christos arising from the use of this software.
100 1.1 christos
101 1.1 christos Permission is granted to anyone to use this software for any purpose,
102 1.1 christos including commercial applications, and to alter it and redistribute it
103 1.1 christos freely, subject to the following restrictions:
104 1.1 christos
105 1.1 christos 1. The origin of this software must not be misrepresented; you must not
106 1.1 christos claim that you wrote the original software. If you use this software
107 1.1 christos in a product, an acknowledgment in the product documentation would be
108 1.1 christos appreciated but is not required.
109 1.1 christos 2. Altered source versions must be plainly marked as such, and must not be
110 1.1 christos misrepresented as being the original software.
111 1.1 christos 3. This notice may not be removed or altered from any source distribution.
112 1.1 christos
113 1.1 christos Jean-loup Gailly Mark Adler
114 1.1 christos jloup (a] gzip.org madler (a] alumni.caltech.edu
115 1.1 christos
116 1.1 christos If you use the zlib library in a product, we would appreciate *not*
117 1.1 christos receiving lengthy legal documents to sign. The sources are provided
118 1.1 christos for free but without warranty of any kind. The library has been
119 1.1 christos entirely written by Jean-loup Gailly and Mark Adler; it does not
120 1.1 christos include third-party code.
121 1.1 christos
122 1.1 christos If you redistribute modified sources, we would appreciate that you include
123 1.1 christos in the file ChangeLog history information documenting your changes. Please
124 1.1 christos read the FAQ for more information on the distribution of modified source
125 1.1 christos versions.
126