summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog16
-rw-r--r--zlib.34
-rw-r--r--zlib.3.pdfbin8720 -> 8727 bytes
-rw-r--r--zlib.h6
4 files changed, 19 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 3d27f00..2358385 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,20 @@
1 1
2 ChangeLog file for zlib 2 ChangeLog file for zlib
3 3
4Changes in 1.2.5.3 (xx Dec 2011) 4Changes in 1.2.5.3 (15 Jan 2012)
5- 5- Restore gzgetc function for binary compatibility
6- Do not use _lseeki64 under Borland C++ [Truta]
7- Update win32/Makefile.msc to build test/*.c [Truta]
8- Remove old/visualc6 given CMakefile and other alternatives
9- Update AS400 build files and documentation [Monnerat]
10- Update win32/Makefile.gcc to build test/*.c [Truta]
11- Permit stronger flushes after Z_BLOCK flushes
12- Avoid extraneous empty blocks when doing empty flushes
13- Permit Z_NULL arguments to deflatePending
14- Allow deflatePrime() to insert bits in the middle of a stream
15- Remove second empty static block for Z_PARTIAL_FLUSH
16- Write out all of the available bits when using Z_BLOCK
17- Insert the first two strings in the hash table after a flush
6 18
7Changes in 1.2.5.2 (17 Dec 2011) 19Changes in 1.2.5.2 (17 Dec 2011)
8- fix ld error: unable to find version dependency 'ZLIB_1.2.5' 20- fix ld error: unable to find version dependency 'ZLIB_1.2.5'
diff --git a/zlib.3 b/zlib.3
index e906b8d..c75b502 100644
--- a/zlib.3
+++ b/zlib.3
@@ -1,4 +1,4 @@
1.TH ZLIB 3 "xx Dec 2011" 1.TH ZLIB 3 "15 Jan 2012"
2.SH NAME 2.SH NAME
3zlib \- compression/decompression library 3zlib \- compression/decompression library
4.SH SYNOPSIS 4.SH SYNOPSIS
@@ -126,7 +126,7 @@ Send questions and/or comments to zlib@gzip.org,
126or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). 126or (for the Windows DLL version) to Gilles Vollant (info@winimage.com).
127.SH AUTHORS 127.SH AUTHORS
128Version 1.2.5.3 128Version 1.2.5.3
129Copyright (C) 1995-2011 Jean-loup Gailly (jloup@gzip.org) 129Copyright (C) 1995-2012 Jean-loup Gailly (jloup@gzip.org)
130and Mark Adler (madler@alumni.caltech.edu). 130and Mark Adler (madler@alumni.caltech.edu).
131.LP 131.LP
132This software is provided "as-is," 132This software is provided "as-is,"
diff --git a/zlib.3.pdf b/zlib.3.pdf
index cd4a7ae..e6e9421 100644
--- a/zlib.3.pdf
+++ b/zlib.3.pdf
Binary files differ
diff --git a/zlib.h b/zlib.h
index 8c2c56e..20bc62c 100644
--- a/zlib.h
+++ b/zlib.h
@@ -1,7 +1,7 @@
1/* zlib.h -- interface of the 'zlib' general purpose compression library 1/* zlib.h -- interface of the 'zlib' general purpose compression library
2 version 1.2.5.3, December xxth, 2011 2 version 1.2.5.3, January 15th, 2012
3 3
4 Copyright (C) 1995-2011 Jean-loup Gailly and Mark Adler 4 Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler
5 5
6 This software is provided 'as-is', without any express or implied 6 This software is provided 'as-is', without any express or implied
7 warranty. In no event will the authors be held liable for any damages 7 warranty. In no event will the authors be held liable for any damages
@@ -37,7 +37,7 @@
37extern "C" { 37extern "C" {
38#endif 38#endif
39 39
40#define ZLIB_VERSION "1.2.5.3-motley" 40#define ZLIB_VERSION "1.2.5.3"
41#define ZLIB_VERNUM 0x1253 41#define ZLIB_VERNUM 0x1253
42#define ZLIB_VER_MAJOR 1 42#define ZLIB_VER_MAJOR 1
43#define ZLIB_VER_MINOR 2 43#define ZLIB_VER_MINOR 2