README.TXT
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:3k
源码类别:

图片显示

开发平台:

Visual C++

  1. zlib 0.93 is a beta version of a general purpose compression library.
  2. The data format used by the zlib library is described in the
  3. files zlib-3.1.doc, deflate-1.1.doc and gzip-4.1.doc, available
  4. in ftp.uu.net:/pub/archiving/zip/doc.
  5. All functions of the compression library are documented in the file
  6. zlib.h. A usage example of the library is given in the file example.c
  7. which also tests that the library is working correctly.
  8. To compile all files and run the test program, just type: make test
  9. (For MSDOS, use one of the special makefiles such as Makefile.msc.)
  10. To install the zlib library (libgz.a) in /usr/local/lib, type: make install
  11. To install in a different directory, use for example: make install prefix=$HOME
  12. This will install in $HOME/lib instead of /usr/local/lib.
  13. The changes made in version 0.93 are documented in the file ChangeLog.
  14. The main changes since 0.9 are:
  15. - temporarily disable inline functions
  16. - make deflate deterministic
  17. - don't use signed char in inflate (not portable enough)
  18. - fix inflate memory leak for segmented architectures
  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 and Pyramid
  23. - fix an inflate bug for stored blocks.
  24. - various speedups
  25. On MSDOS, this version works in both large and small model. However
  26. small model compression works only for small values of MAX_MEM_LEVEL
  27. and MAX_WBITS (see zconf.h). Small model decompression should work up
  28. to MAX_WBITS=15.  This version of zlib does not support small or
  29. medium model with far allocation of big objects.
  30.   Copyright (C) 1995 Jean-loup Gailly and Mark Adler
  31.   This software is provided 'as-is', without any express or implied
  32.   warranty.  In no event will the authors be held liable for any damages
  33.   arising from the use of this software.
  34.   Permission is granted to anyone to use this software for any purpose,
  35.   including commercial applications, and to alter it and redistribute it
  36.   freely, subject to the following restrictions:
  37.   1. The origin of this software must not be misrepresented; you must not
  38.      claim that you wrote the original software. If you use this software
  39.      in a product, an acknowledgment in the product documentation would be
  40.      appreciated but is not required.
  41.   2. Altered source versions must be plainly marked as such, and must not be
  42.      misrepresented as being the original software.
  43.   3. This notice may not be removed or altered from any source distribution.
  44.   Jean-loup Gailly        Mark Adler
  45.   gzip@prep.ai.mit.edu    madler@alumni.caltech.edu
  46. If you use the zlib library in a product, we would appreciate *not*
  47. receiving lengthy legal documents to sign. The sources are provided
  48. for free but without warranty of any kind.  The library has been
  49. entirely written by Jean-loup Gailly and Mark Adler; it does not
  50. include third-party code.
  51. If you redistribute modified sources, we would appreciate that you include
  52. in the file ChangeLog history information documenting your changes.