source: trunk/essentials/dev-lang/python/Modules/zlib/README@ 3506

Last change on this file since 3506 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 5.6 KB
Line 
1ZLIB DATA COMPRESSION LIBRARY
2
3zlib 1.2.3 is a general purpose data compression library. All the code is
4thread safe. The data format used by the zlib library is described by RFCs
5(Request for Comments) 1950 to 1952 in the files
6http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format)
7and rfc1952.txt (gzip format). These documents are also available in other
8formats from ftp://ftp.uu.net/graphics/png/documents/zlib/zdoc-index.html
9
10All functions of the compression library are documented in the file zlib.h
11(volunteer to write man pages welcome, contact [email protected]). A usage example
12of the library is given in the file example.c which also tests that the library
13is working correctly. Another example is given in the file minigzip.c. The
14compression library itself is composed of all source files except example.c and
15minigzip.c.
16
17To compile all files and run the test program, follow the instructions given at
18the top of Makefile. In short "make test; make install" should work for most
19machines. For Unix: "./configure; make test; make install". For MSDOS, use one
20of the special makefiles such as Makefile.msc. For VMS, use make_vms.com.
21
22Questions about zlib should be sent to <[email protected]>, or to Gilles Vollant
23<[email protected]> for the Windows DLL version. The zlib home page is
24http://www.zlib.org or http://www.gzip.org/zlib/ Before reporting a problem,
25please check this site to verify that you have the latest version of zlib;
26otherwise get the latest version and check whether the problem still exists or
27not.
28
29PLEASE read the zlib FAQ http://www.gzip.org/zlib/zlib_faq.html before asking
30for help.
31
32Mark Nelson <[email protected]> wrote an article about zlib for the Jan. 1997
33issue of Dr. Dobb's Journal; a copy of the article is available in
34http://dogma.net/markn/articles/zlibtool/zlibtool.htm
35
36The changes made in version 1.2.3 are documented in the file ChangeLog.
37
38Unsupported third party contributions are provided in directory "contrib".
39
40A Java implementation of zlib is available in the Java Development Kit
41http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip/package-summary.html
42See the zlib home page http://www.zlib.org for details.
43
44A Perl interface to zlib written by Paul Marquess <[email protected]> is in the
45CPAN (Comprehensive Perl Archive Network) sites
46http://www.cpan.org/modules/by-module/Compress/
47
48A Python interface to zlib written by A.M. Kuchling <[email protected]> is
49available in Python 1.5 and later versions, see