README revision 1.1.1.3 1 1.1 christos ZLIB DATA COMPRESSION LIBRARY
2 1.1 christos
3 1.1.1.3 christos zlib 1.2.13 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.1.2 christos http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and
7 1.1.1.2 christos rfc1952 (gzip format).
8 1.1 christos
9 1.1 christos All functions of the compression library are documented in the file zlib.h
10 1.1.1.2 christos (volunteer to write man pages welcome, contact zlib (a] gzip.org). A usage example
11 1.1.1.2 christos of the library is given in the file test/example.c which also tests that
12 1.1.1.2 christos the library is working correctly. Another example is given in the file
13 1.1.1.2 christos test/minigzip.c. The compression library itself is composed of all source
14 1.1.1.2 christos files in the root directory.
15 1.1 christos
16 1.1 christos To compile all files and run the test program, follow the instructions given at
17 1.1.1.2 christos the top of Makefile.in. In short "./configure; make test", and if that goes
18 1.1.1.2 christos well, "make install" should work for most flavors of Unix. For Windows, use
19 1.1.1.2 christos one of the special makefiles in win32/ or contrib/vstudio/ . For VMS, use
20 1.1.1.2 christos 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.1.2 christos <info (a] winimage.com> for the Windows DLL version. The zlib home page is
24 1.1.1.2 christos http://zlib.net/ . Before reporting a problem, please check this site to
25 1.1.1.2 christos verify that you have the latest version of zlib; otherwise get the latest
26 1.1.1.2 christos version and check whether the problem still exists or not.
27 1.1.1.2 christos
28 1.1.1.2 christos PLEASE read the zlib FAQ http://zlib.net/zlib_faq.html before asking for help.
29 1.1.1.2 christos
30 1.1.1.2 christos Mark Nelson <markn (a] ieee.org> wrote an article about zlib for the Jan. 1997
31 1.1.1.2 christos issue of Dr. Dobb's Journal; a copy of the article is available at
32 1.1.1.2 christos http://marknelson.us/1997/01/01/zlib-engine/ .
33 1.1.1.2 christos
34 1.1.1.3 christos The changes made in version 1.2.13 are documented in the file ChangeLog.
35 1.1.1.2 christos
36 1.1.1.2 christos Unsupported third party contributions are provided in directory contrib/ .
37 1.1.1.2 christos
38 1.1.1.2 christos zlib is available in Java using the java.util.zip package, documented at
39 1.1.1.2 christos http://java.sun.com/developer/technicalArticles/Programming/compression/ .
40 1.1.1.2 christos
41 1.1.1.2 christos A Perl interface to zlib written by Paul Marquess <pmqs (a] cpan.org> is available
42 1.1.1.2 christos at CPAN (Comprehensive Perl Archive Network) sites, including
43 1.1.1.2 christos http://search.cpan.org/~pmqs/IO-Compress-Zlib/ .
44 1.1 christos
45 1.1 christos A Python interface to zlib written by A.M. Kuchling <amk (a] amk.ca> is
46 1.1 christos available in Python 1.5 and later versions, see
47 1.1.1.2 christos http://docs.python.org/library/zlib.html .
48 1.1 christos
49 1.1.1.2 christos zlib is built into tcl: http://wiki.tcl.tk/4610 .
50 1.1 christos
51 1.1 christos An experimental package to read and write files in .zip format, written on top
52 1.1 christos of zlib by Gilles Vollant <info (a] winimage.com>, is available in the
53 1.1 christos contrib/minizip directory of zlib.
54 1.1 christos
55 1.1 christos
56 1.1 christos Notes for some targets:
57 1.1 christos
58 1.1 christos - For Windows DLL versions, please see win32/DLL_FAQ.txt
59 1.1 christos
60 1.1 christos - For 64-bit Irix, deflate.c must be compiled without any optimization. With
61 1.1 christos -O, one libpng test fails. The test works in 32 bit mode (with the -n32
62 1.1 christos compiler flag). The compiler bug has been reported to SGI.
63 1.1 christos
64 1.1 christos - zlib doesn't work with gcc 2.6.3 on a DEC 3000/300LX under OSF/1 2.1 it works
65 1.1 christos when compiled with cc.
66 1.1 christos
67 1.1 christos - On Digital Unix 4.0D (formely OSF/1) on AlphaServer, the cc option -std1 is
68 1.1 christos necessary to get gzprintf working correctly. This is done by configure.
69 1.1 christos
70 1.1 christos - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with
71 1.1 christos other compilers. Use "make test" to check your compiler.
72 1.1 christos
73 1.1.1.2 christos - gzdopen is not supported on RISCOS or BEOS.
74 1.1 christos
75 1.1 christos - For PalmOs, see http://palmzlib.sourceforge.net/
76 1.1 christos
77 1.1 christos
78 1.1 christos Acknowledgments:
79 1.1 christos
80 1.1.1.2 christos The deflate format used by zlib was defined by Phil Katz. The deflate and
81 1.1.1.2 christos zlib specifications were written by L. Peter Deutsch. Thanks to all the
82 1.1.1.2 christos people who reported problems and suggested various improvements in zlib; they
83 1.1.1.2 christos are too numerous to cite here.
84 1.1 christos
85 1.1 christos Copyright notice:
86 1.1 christos
87 1.1.1.3 christos (C) 1995-2022 Jean-loup Gailly and Mark Adler
88 1.1 christos
89 1.1 christos This software is provided 'as-is', without any express or implied
90 1.1 christos warranty. In no event will the authors be held liable for any damages
91 1.1 christos arising from the use of this software.
92 1.1 christos
93 1.1 christos Permission is granted to anyone to use this software for any purpose,
94 1.1 christos including commercial applications, and to alter it and redistribute it
95 1.1 christos freely, subject to the following restrictions:
96 1.1 christos
97 1.1 christos 1. The origin of this software must not be misrepresented; you must not
98 1.1 christos claim that you wrote the original software. If you use this software
99 1.1 christos in a product, an acknowledgment in the product documentation would be
100 1.1 christos appreciated but is not required.
101 1.1 christos 2. Altered source versions must be plainly marked as such, and must not be
102 1.1 christos misrepresented as being the original software.
103 1.1 christos 3. This notice may not be removed or altered from any source distribution.
104 1.1 christos
105 1.1 christos Jean-loup Gailly Mark Adler
106 1.1 christos jloup (a] gzip.org madler (a] alumni.caltech.edu
107 1.1 christos
108 1.1.1.2 christos If you use the zlib library in a product, we would appreciate *not* receiving
109 1.1.1.2 christos lengthy legal documents to sign. The sources are provided for free but without
110 1.1.1.2 christos warranty of any kind. The library has been entirely written by Jean-loup
111 1.1.1.3 christos Gailly and Mark Adler; it does not include third-party code. We make all
112 1.1.1.3 christos contributions to and distributions of this project solely in our personal
113 1.1.1.3 christos capacity, and are not conveying any rights to any intellectual property of
114 1.1.1.3 christos any third parties.
115 1.1.1.2 christos
116 1.1.1.2 christos If you redistribute modified sources, we would appreciate that you include in
117 1.1.1.2 christos the file ChangeLog history information documenting your changes. Please read
118 1.1.1.2 christos the FAQ for more information on the distribution of modified source versions.
119