Deleted Added
full compact
README (145474) README (157043)
1ZLIB DATA COMPRESSION LIBRARY
2
1ZLIB DATA COMPRESSION LIBRARY
2
3zlib 1.2.2 is a general purpose data compression library. All the code is
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 zlib@gzip.org). 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
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 zlib@gzip.org). 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 or
21descrip.mms.
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.
22
23Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant
24<info@winimage.com> for the Windows DLL version. The zlib home page is
25http://www.zlib.org or http://www.gzip.org/zlib/ Before reporting a problem,
26please check this site to verify that you have the latest version of zlib;
27otherwise get the latest version and check whether the problem still exists or
28not.
29
30PLEASE read the zlib FAQ http://www.gzip.org/zlib/zlib_faq.html before asking
31for help.
32
33Mark Nelson <markn@ieee.org> wrote an article about zlib for the Jan. 1997
34issue of Dr. Dobb's Journal; a copy of the article is available in
35http://dogma.net/markn/articles/zlibtool/zlibtool.htm
36
21
22Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant
23<info@winimage.com> 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 <markn@ieee.org> 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
37The changes made in version 1.2.2 are documented in the file ChangeLog.
36The changes made in version 1.2.3 are documented in the file ChangeLog.
38
39Unsupported third party contributions are provided in directory "contrib".
40
41A Java implementation of zlib is available in the Java Development Kit
42http://java.sun.com/j2se/1.4.2/docs/api/java/util/zip/package-summary.html
43See the zlib home page http://www.zlib.org for details.
44
45A Perl interface to zlib written by Paul Marquess <pmqs@cpan.org> is in the

--- 81 unchanged lines hidden ---
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 <pmqs@cpan.org> is in the

--- 81 unchanged lines hidden ---