diff options
Diffstat (limited to 'ChangeLog')
| -rw-r--r-- | ChangeLog | 63 |
1 files changed, 62 insertions, 1 deletions
| @@ -1,6 +1,67 @@ | |||
| 1 | 1 | ||
| 2 | ChangeLog file for zlib | 2 | ChangeLog file for zlib |
| 3 | 3 | ||
| 4 | Changes in 1.2.3.4 (21 Dec 2009) | ||
| 5 | - Use old school .SUFFIXES in Makefile.in for FreeBSD compatibility | ||
| 6 | - Update comments in configure and Makefile.in for default --shared | ||
| 7 | - Fix test -z's in configure [Marquess] | ||
| 8 | - Build examplesh and minigzipsh when not testing | ||
| 9 | - Change NULL's to Z_NULL's in deflate.c and in comments in zlib.h | ||
| 10 | - Import LDFLAGS from the environment in configure | ||
| 11 | - Fix configure to populate SFLAGS with discovered CFLAGS options | ||
| 12 | - Adapt make_vms.com to the new Makefile.in [Zinser] | ||
| 13 | - Add zlib2ansi script for C++ compilation [Marquess] | ||
| 14 | - Add _FILE_OFFSET_BITS=64 test to make test (when applicable) | ||
| 15 | - Add AMD64 assembler code for longest match to contrib [Teterin] | ||
| 16 | - Include options from $SFLAGS when doing $LDSHARED | ||
| 17 | - Simplify 64-bit file support by introducing z_off64_t type | ||
| 18 | - Make shared object files in objs directory to work around old Sun cc | ||
| 19 | - Use only three-part version number for Darwin shared compiles | ||
| 20 | - Add rc option to ar in Makefile.in for when ./configure not run | ||
| 21 | - Add -WI,-rpath,. to LDFLAGS for OSF 1 V4* | ||
| 22 | - Set LD_LIBRARYN32_PATH for SGI IRIX shared compile | ||
| 23 | - Protect against _FILE_OFFSET_BITS being defined when compiling zlib | ||
| 24 | - Rename Makefile.in targets allstatic to static and allshared to shared | ||
| 25 | - Fix static and shared Makefile.in targets to be independent | ||
| 26 | - Correct error return bug in gz_open() by setting state [Brown] | ||
| 27 | - Put spaces before ;;'s in configure for better sh compatibility | ||
| 28 | - Added pigz.c (parallel implementation of gzip) to examples/ | ||
| 29 | - Correct constant in crc32.c to UL [Leventhal] | ||
| 30 | - Reject negative lengths in crc32_combine() | ||
| 31 | - Add inflateReset2() function to work like inflateEnd()/inflateInit2() | ||
| 32 | - Include sys/types.h for _LARGEFILE64_SOURCE [Brown] | ||
| 33 | - Correct typo in doc/algorithm.txt [Janik] | ||
| 34 | - Fix bug in adler32_combine() [Zhu] | ||
| 35 | - Catch missing-end-of-block-code error in all inflates and in puff | ||
| 36 | Assures that random input to inflate eventually results in an error | ||
| 37 | - Added enough.c (calculation of ENOUGH for inftrees.h) to examples/ | ||
| 38 | - Update ENOUGH and its usage to reflect discovered bounds | ||
| 39 | - Fix gzerror() error report on empty input file [Brown] | ||
| 40 | - Add ush casts in trees.c to avoid pedantic runtime errors | ||
| 41 | - Fix typo in zlib.h uncompress() description [Reiss] | ||
| 42 | - Correct inflate() comments with regard to automatic header detection | ||
| 43 | - Remove deprecation comment on Z_PARTIAL_FLUSH (it stays) | ||
| 44 | - Put new version of gzlog (2.0) in examples with interruption recovery | ||
| 45 | - Add puff compile option to permit invalid distance-too-far streams | ||
| 46 | - Add puff TEST command options, ability to read piped input | ||
| 47 | - Prototype the *64 functions in zlib.h when _FILE_OFFSET_BITS == 64, but | ||
| 48 | _LARGEFILE64_SOURCE not defined | ||
| 49 | - Fix Z_FULL_FLUSH to truly erase the past by resetting s->strstart | ||
| 50 | - Fix deflateSetDictionary() to use all 32K for output consistency | ||
| 51 | - Remove extraneous #define MIN_LOOKAHEAD in deflate.c (in deflate.h) | ||
| 52 | - Clear bytes after deflate lookahead to avoid use of uninitialized data | ||
| 53 | - Change a limit in inftrees.c to be more transparent to Coverity Prevent | ||
| 54 | - Update win32/zlib.def with exported symbols from zlib.h | ||
| 55 | - Correct spelling error in zlib.h [Willem] | ||
| 56 | - Allow Z_BLOCK for deflate() to force a new block | ||
| 57 | - Allow negative bits in inflatePrime() to delete existing bit buffer | ||
| 58 | - Add Z_TREES flush option to inflate() to return at end of trees | ||
| 59 | - Add inflateMark() to return current state information for random access | ||
| 60 | - Added Makefile for NintendoDS to contrib [Costa] | ||
| 61 | - Add -w in configure compile tests to avoid spurious warnings [Beucler] | ||
| 62 | - Fix typos in zlib.h comments for deflateSetDictionary() | ||
| 63 | - Fix EOF detection in transparent gzread() [Maier] | ||
| 64 | |||
| 4 | Changes in 1.2.3.3 (2 October 2006) | 65 | Changes in 1.2.3.3 (2 October 2006) |
| 5 | - Make --shared the default for configure, add a --static option | 66 | - Make --shared the default for configure, add a --static option |
| 6 | - Add compile option to permit invalid distance-too-far streams | 67 | - Add compile option to permit invalid distance-too-far streams |
| @@ -10,7 +71,7 @@ Changes in 1.2.3.3 (2 October 2006) | |||
| 10 | - Use ftello() and fseeko() if available instead of ftell() and fseek() | 71 | - Use ftello() and fseeko() if available instead of ftell() and fseek() |
| 11 | - Provide two versions of all functions that use the z_off_t type for | 72 | - Provide two versions of all functions that use the z_off_t type for |
| 12 | binary compatibility -- a normal version and a 64-bit offset version, | 73 | binary compatibility -- a normal version and a 64-bit offset version, |
| 13 | per the Large File Support Extension when _LARGEFILE64_SUPPORT is | 74 | per the Large File Support Extension when _LARGEFILE64_SOURCE is |
| 14 | defined; use the 64-bit versions by default when _FILE_OFFSET_BITS | 75 | defined; use the 64-bit versions by default when _FILE_OFFSET_BITS |
| 15 | is defined to be 64 | 76 | is defined to be 64 |
| 16 | - Add a --uname= option to configure to perhaps help with cross-compiling | 77 | - Add a --uname= option to configure to perhaps help with cross-compiling |
