summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README30
1 files changed, 18 insertions, 12 deletions
diff --git a/README b/README
index 0c718f1..caeccb9 100644
--- a/README
+++ b/README
@@ -1,25 +1,31 @@
1zlib 0.9 is a beta version of a general purpose compression library. 1zlib 0.91 is a beta version of a general purpose compression library.
2 2
3The data format used by the zlib library is described in the 3The data format used by the zlib library is described in the
4file zlib-3.1.doc, deflate-1.1.doc and gzip-4.1.doc, available 4files zlib-3.1.doc, deflate-1.1.doc and gzip-4.1.doc, available
5in ftp.uu.net:/pub/archiving/zip/doc. 5in ftp.uu.net:/pub/archiving/zip/doc.
6 6
7All functions of the compression library are documented in the file 7All functions of the compression library are documented in the file
8zlib.h. A usage example of the library is given in the file example.c 8zlib.h. A usage example of the library is given in the file example.c
9which also tests that the library is working correctly. 9which also tests that the library is working correctly.
10To compile all files and run the test program, just type: make test
11 10
12The changes made in version 0.9 are documented in the file ChangeLog. 11To compile all files and run the test program, just type: make test
13The main changes since 0.8 are: 12(For MSDOS, use one of the special makefiles such as Makefile.msc.)
14- don't assume that zalloc clears the allocated memory 13To install the zlib library (libgz.a) in /usr/local/lib, type: make install
15- let again gzread copy uncompressed data unchanged (was working in 0.71) 14To install in a different directory, use for example: make install prefix=$HOME
16- deflate(Z_FULL_FLUSH), inflateReset and inflateSync are now fully implemented 15This will install in $HOME/lib instead of /usr/local/lib.
16
17The changes made in version 0.91 are documented in the file ChangeLog.
18The main changes since 0.9 are:
19- Default MEM_LEVEL is 8 (not 9 for Unix) as documented in zlib.h
20- Document the memory requirements in zconf.h
21- added "make install"
22- added support for DJGPP
17 23
18On MSDOS, this version works in both large and small model. However 24On MSDOS, this version works in both large and small model. However
19small model compression works only for small values of MEM_LEVEL and 25small model compression works only for small values of MAX_MEM_LEVEL
20WBITS (see zutil.h). Small model decompression should work up to WBITS=15. 26and MAX_WBITS (see zconf.h). Small model decompression should work up
21This version of zlib does not support small or medium model with far 27to MAX_WBITS=15. This version of zlib does not support small or
22allocation of big objects. 28medium model with far allocation of big objects.
23 29
24 30
25 Copyright (C) 1995 Jean-loup Gailly and Mark Adler 31 Copyright (C) 1995 Jean-loup Gailly and Mark Adler