aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-12-18 10:39:45 -0800
committerMark Adler <madler@alumni.caltech.edu>2011-12-18 10:39:45 -0800
commitfe61dfb8a27754137c2f6a1ff59b1e55d615210e (patch)
tree5c18d4c82b6bedfe00746f0588e7a268cf381738
parent4ab814df83f0ef5a0ccb28f19c3bd52c837ae4ec (diff)
downloadzlib-fe61dfb8a27754137c2f6a1ff59b1e55d615210e.tar.gz
zlib-fe61dfb8a27754137c2f6a1ff59b1e55d615210e.tar.bz2
zlib-fe61dfb8a27754137c2f6a1ff59b1e55d615210e.zip
zlib 1.2.5.2v1.2.5.2
-rw-r--r--ChangeLog53
-rw-r--r--infback.c2
-rw-r--r--inflate.c2
-rw-r--r--zlib.32
-rw-r--r--zlib.3.pdfbin8746 -> 8718 bytes
-rw-r--r--zlib.h4
-rw-r--r--zutil.h2
7 files changed, 57 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f3b176..8b12c64 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,57 @@
1 1
2 ChangeLog file for zlib 2 ChangeLog file for zlib
3 3
4Changes in 1.2.5.2 (xx Sep 2011) 4Changes in 1.2.5.2 (17 Dec 2011)
5- 5- fix ld error: unable to find version dependency 'ZLIB_1.2.5'
6- use relative symlinks for shared libs
7- Avoid searching past window for Z_RLE strategy
8- Assure that high-water mark initialization is always applied in deflate
9- Add assertions to fill_window() in deflate.c to match comments
10- Update python link in README
11- Correct spelling error in gzread.c
12- Fix bug in gzgets() for a concatenated empty gzip stream
13- Correct error in comment for gz_make()
14- Change gzread() and related to ignore junk after gzip streams
15- Allow gzread() and related to continue after gzclearerr()
16- Allow gzrewind() and gzseek() after a premature end-of-file
17- Simplify gzseek() now that raw after gzip is ignored
18- Change gzgetc() to a macro for speed (~40% speedup in testing)
19- Fix gzclose() to return the actual error last encountered
20- Always add large file support for windows
21- Include zconf.h for windows large file support
22- Include zconf.h.cmakein for windows large file support
23- Update zconf.h.cmakein on make distclean
24- Merge vestigial vsnprintf determination from zutil.h to gzguts.h
25- Clarify how gzopen() appends in zlib.h comments
26- Correct documentation of gzdirect() since junk at end now ignored
27- Add a transparent write mode to gzopen() when 'T' is in the mode
28- Update python link in zlib man page
29- Get inffixed.h and MAKEFIXED result to match
30- Add a ./config --solo option to make zlib subset with no libary use
31- Add undocumented inflateResetKeep() function for CAB file decoding
32- Add --cover option to ./configure for gcc coverage testing
33- Add #define ZLIB_CONST option to use const in the z_stream interface
34- Add comment to gzdopen() in zlib.h to use dup() when using fileno()
35- Note behavior of uncompress() to provide as much data as it can
36- Add files in contrib/minizip to aid in building libminizip
37- Split off AR options in Makefile.in and configure
38- Change ON macro to Z_ARG to avoid application conflicts
39- Facilitate compilation with Borland C++ for pragmas and vsnprintf
40- Include io.h for Turbo C / Borland C++
41- Move example.c and minigzip.c to test/
42- Simplify incomplete code table filling in inflate_table()
43- Remove code from inflate.c and infback.c that is impossible to execute
44- Test the inflate code with full coverage
45- Allow deflateSetDictionary, inflateSetDictionary at any time (in raw)
46- Add deflateResetKeep and fix inflateResetKeep to retain dictionary
47- Fix gzwrite.c to accommodate reduced memory zlib compilation
48- Have inflate() with Z_FINISH avoid the allocation of a window
49- Do not set strm->adler when doing raw inflate
50- Fix gzeof() to behave just like feof() when read is not past end of file
51- Fix bug in gzread.c when end-of-file is reached
52- Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF
53- Document gzread() capability to read concurrently written files
54- Remove hard-coding of resource compiler in CMakeLists.txt [Blammo]
6 55
7Changes in 1.2.5.1 (10 Sep 2011) 56Changes in 1.2.5.1 (10 Sep 2011)
8- Update FAQ entry on shared builds (#13) 57- Update FAQ entry on shared builds (#13)
diff --git a/infback.c b/infback.c
index c026485..981aff1 100644
--- a/infback.c
+++ b/infback.c
@@ -1,5 +1,5 @@
1/* infback.c -- inflate using a call-back interface 1/* infback.c -- inflate using a call-back interface
2 * Copyright (C) 1995-2009 Mark Adler 2 * Copyright (C) 1995-2011 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
diff --git a/inflate.c b/inflate.c
index 92a4665..cc89517 100644
--- a/inflate.c
+++ b/inflate.c
@@ -1,5 +1,5 @@
1/* inflate.c -- zlib decompression 1/* inflate.c -- zlib decompression
2 * Copyright (C) 1995-2010 Mark Adler 2 * Copyright (C) 1995-2011 Mark Adler
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5
diff --git a/zlib.3 b/zlib.3
index aedf220..69e2855 100644
--- a/zlib.3
+++ b/zlib.3
@@ -1,4 +1,4 @@
1.TH ZLIB 3 "27 Nov 2011" 1.TH ZLIB 3 "17 Dec 2011"
2.SH NAME 2.SH NAME
3zlib \- compression/decompression library 3zlib \- compression/decompression library
4.SH SYNOPSIS 4.SH SYNOPSIS
diff --git a/zlib.3.pdf b/zlib.3.pdf
index 45f40e8..1ff8ac7 100644
--- a/zlib.3.pdf
+++ b/zlib.3.pdf
Binary files differ
diff --git a/zlib.h b/zlib.h
index 7068d50..fbe0854 100644
--- a/zlib.h
+++ b/zlib.h
@@ -1,5 +1,5 @@
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.2, September xxth, 2011 2 version 1.2.5.2, December 17th, 2011
3 3
4 Copyright (C) 1995-2011 Jean-loup Gailly and Mark Adler 4 Copyright (C) 1995-2011 Jean-loup Gailly and Mark Adler
5 5
@@ -37,7 +37,7 @@
37extern "C" { 37extern "C" {
38#endif 38#endif
39 39
40#define ZLIB_VERSION "1.2.5.2-motley" 40#define ZLIB_VERSION "1.2.5.2"
41#define ZLIB_VERNUM 0x1252 41#define ZLIB_VERNUM 0x1252
42#define ZLIB_VER_MAJOR 1 42#define ZLIB_VER_MAJOR 1
43#define ZLIB_VER_MINOR 2 43#define ZLIB_VER_MINOR 2
diff --git a/zutil.h b/zutil.h
index 3b8e531..dff1112 100644
--- a/zutil.h
+++ b/zutil.h
@@ -1,5 +1,5 @@
1/* zutil.h -- internal interface and configuration of the compression library 1/* zutil.h -- internal interface and configuration of the compression library
2 * Copyright (C) 1995-2010 Jean-loup Gailly. 2 * Copyright (C) 1995-2011 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */ 4 */
5 5