diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2012-01-15 18:58:21 -0800 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2012-01-15 18:58:21 -0800 |
commit | defd366a41f061dc9dc2bb7ab88876909bd5934c (patch) | |
tree | 3596b2740ac5d6649102981b4000707ddf94c380 | |
parent | 68f64498c2bbabaef0180f4d30207db2b0b67f07 (diff) | |
download | zlib-defd366a41f061dc9dc2bb7ab88876909bd5934c.tar.gz zlib-defd366a41f061dc9dc2bb7ab88876909bd5934c.tar.bz2 zlib-defd366a41f061dc9dc2bb7ab88876909bd5934c.zip |
zlib 1.2.5.3v1.2.5.3
-rw-r--r-- | ChangeLog | 16 | ||||
-rw-r--r-- | zlib.3 | 4 | ||||
-rw-r--r-- | zlib.3.pdf | bin | 8720 -> 8727 bytes | |||
-rw-r--r-- | zlib.h | 6 |
4 files changed, 19 insertions, 7 deletions
@@ -1,8 +1,20 @@ | |||
1 | 1 | ||
2 | ChangeLog file for zlib | 2 | ChangeLog file for zlib |
3 | 3 | ||
4 | Changes in 1.2.5.3 (xx Dec 2011) | 4 | Changes 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 | ||
7 | Changes in 1.2.5.2 (17 Dec 2011) | 19 | Changes 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' |
@@ -1,4 +1,4 @@ | |||
1 | .TH ZLIB 3 "xx Dec 2011" | 1 | .TH ZLIB 3 "15 Jan 2012" |
2 | .SH NAME | 2 | .SH NAME |
3 | zlib \- compression/decompression library | 3 | zlib \- compression/decompression library |
4 | .SH SYNOPSIS | 4 | .SH SYNOPSIS |
@@ -126,7 +126,7 @@ Send questions and/or comments to zlib@gzip.org, | |||
126 | or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). | 126 | or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). |
127 | .SH AUTHORS | 127 | .SH AUTHORS |
128 | Version 1.2.5.3 | 128 | Version 1.2.5.3 |
129 | Copyright (C) 1995-2011 Jean-loup Gailly (jloup@gzip.org) | 129 | Copyright (C) 1995-2012 Jean-loup Gailly (jloup@gzip.org) |
130 | and Mark Adler (madler@alumni.caltech.edu). | 130 | and Mark Adler (madler@alumni.caltech.edu). |
131 | .LP | 131 | .LP |
132 | This software is provided "as-is," | 132 | This software is provided "as-is," |
Binary files differ | |||
@@ -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 @@ | |||
37 | extern "C" { | 37 | extern "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 |