diff options
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -1,6 +1,27 @@ | |||
1 | 1 | ||
2 | ChangeLog file for zlib | 2 | ChangeLog file for zlib |
3 | 3 | ||
4 | Changes in 1.2.3.5 (8 Jan 2010) | ||
5 | - Add space after #if in zutil.h for some compilers | ||
6 | - Fix relatively harmless bug in deflate_fast() [Exarevsky] | ||
7 | - Fix same problem in deflate_slow() | ||
8 | - Add $(SHAREDLIBV) to LIBS in Makefile.in [Brown] | ||
9 | - Add deflate_rle() for faster Z_RLE strategy run-length encoding | ||
10 | - Add deflate_huff() for faster Z_HUFFMAN_ONLY encoding | ||
11 | - Change name of "write" variable in inffast.c to avoid library collisions | ||
12 | - Fix premature EOF from gzread() in gzio.c [Brown] | ||
13 | - Use zlib header window size if windowBits is 0 in inflateInit2() | ||
14 | - Remove compressBound() call in deflate.c to avoid linking compress.o | ||
15 | - Replace use of errno in gz* with functions, support WinCE [Alves] | ||
16 | - Provide alternative to perror() in minigzip.c for WinCE [Alves] | ||
17 | - Don't use _vsnprintf on later versions of MSVC [Lowman] | ||
18 | - Add CMake build script and input file [Lowman] | ||
19 | - Update contrib/minizip to 1.1 [Svensson, Vollant] | ||
20 | - Moved nintendods directory from contrib to . | ||
21 | - Replace gzio.c with a new set of routines with the same functionality | ||
22 | - Add gzbuffer(), gzoffset(), gzclose_r(), gzclose_w() as part of above | ||
23 | - Update contrib/minizip to 1.1b | ||
24 | |||
4 | Changes in 1.2.3.4 (21 Dec 2009) | 25 | Changes in 1.2.3.4 (21 Dec 2009) |
5 | - Use old school .SUFFIXES in Makefile.in for FreeBSD compatibility | 26 | - Use old school .SUFFIXES in Makefile.in for FreeBSD compatibility |
6 | - Update comments in configure and Makefile.in for default --shared | 27 | - Update comments in configure and Makefile.in for default --shared |
@@ -25,7 +46,7 @@ Changes in 1.2.3.4 (21 Dec 2009) | |||
25 | - Fix static and shared Makefile.in targets to be independent | 46 | - Fix static and shared Makefile.in targets to be independent |
26 | - Correct error return bug in gz_open() by setting state [Brown] | 47 | - Correct error return bug in gz_open() by setting state [Brown] |
27 | - Put spaces before ;;'s in configure for better sh compatibility | 48 | - Put spaces before ;;'s in configure for better sh compatibility |
28 | - Added pigz.c (parallel implementation of gzip) to examples/ | 49 | - Add pigz.c (parallel implementation of gzip) to examples/ |
29 | - Correct constant in crc32.c to UL [Leventhal] | 50 | - Correct constant in crc32.c to UL [Leventhal] |
30 | - Reject negative lengths in crc32_combine() | 51 | - Reject negative lengths in crc32_combine() |
31 | - Add inflateReset2() function to work like inflateEnd()/inflateInit2() | 52 | - Add inflateReset2() function to work like inflateEnd()/inflateInit2() |
@@ -57,7 +78,7 @@ Changes in 1.2.3.4 (21 Dec 2009) | |||
57 | - Allow negative bits in inflatePrime() to delete existing bit buffer | 78 | - Allow negative bits in inflatePrime() to delete existing bit buffer |
58 | - Add Z_TREES flush option to inflate() to return at end of trees | 79 | - Add Z_TREES flush option to inflate() to return at end of trees |
59 | - Add inflateMark() to return current state information for random access | 80 | - Add inflateMark() to return current state information for random access |
60 | - Added Makefile for NintendoDS to contrib [Costa] | 81 | - Add Makefile for NintendoDS to contrib [Costa] |
61 | - Add -w in configure compile tests to avoid spurious warnings [Beucler] | 82 | - Add -w in configure compile tests to avoid spurious warnings [Beucler] |
62 | - Fix typos in zlib.h comments for deflateSetDictionary() | 83 | - Fix typos in zlib.h comments for deflateSetDictionary() |
63 | - Fix EOF detection in transparent gzread() [Maier] | 84 | - Fix EOF detection in transparent gzread() [Maier] |