Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update zlib from 1.2.5 to 1.2.11 to get security fixes.
315 changes: 311 additions & 4 deletions Modules/zlib/ChangeLog

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions Modules/zlib/FAQ
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html

6. Where's the zlib documentation (man pages, etc.)?

It's in zlib.h . Examples of zlib usage are in the files example.c and
minigzip.c, with more in examples/ .
It's in zlib.h . Examples of zlib usage are in the files test/example.c
and test/minigzip.c, with more in examples/ .

7. Why don't you use GNU autoconf or libtool or ...?

Expand Down Expand Up @@ -84,8 +84,10 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html

13. How can I make a Unix shared library?

make clean
./configure -s
By default a shared (and a static) library is built for Unix. So:

make distclean
./configure
make

14. How do I install a shared zlib library on Unix?
Expand Down Expand Up @@ -325,7 +327,7 @@ The lastest zlib FAQ is at http://zlib.net/zlib_faq.html
correctly points to the zlib specification in RFC 1950 for the "deflate"
transfer encoding, there have been reports of servers and browsers that
incorrectly produce or expect raw deflate data per the deflate
specficiation in RFC 1951, most notably Microsoft. So even though the
specification in RFC 1951, most notably Microsoft. So even though the
"deflate" transfer encoding using the zlib format would be the more
efficient approach (and in fact exactly what the zlib format was designed
for), using the "gzip" transfer encoding is probably more reliable due to
Expand Down
13 changes: 8 additions & 5 deletions Modules/zlib/INDEX
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,21 @@ Makefile.in template for Unix Makefile
README guess what
configure configure script for Unix
make_vms.com makefile for VMS
test/example.c zlib usages examples for build testing
test/minigzip.c minimal gzip-like functionality for build testing
test/infcover.c inf*.c code coverage for build coverage testing
treebuild.xml XML description of source file dependencies
zconf.h.cmakein zconf.h template for cmake
zconf.h.in zconf.h template for configure
zlib.3 Man page for zlib
zlib.3.pdf Man page in PDF format
zlib.map Linux symbol information
zlib.pc.in Template for pkg-config descriptor
zlib.pc.cmakein zlib.pc template for cmake
zlib2ansi perl script to convert source files for C++ compilation

amiga/ makefiles for Amiga SAS C
as400/ makefiles for AS/400
doc/ documentation for formats and algorithms
msdos/ makefiles for MSDOS
nintendods/ makefile for Nintendo DS
Expand Down Expand Up @@ -56,10 +61,8 @@ uncompr.c
zutil.c
zutil.h

source files for sample programs:
example.c
minigzip.c
See examples/README.examples for more
source files for sample programs
See examples/README.examples

unsupported contribution by third parties
unsupported contributions by third parties
See contrib/README.contrib
Loading