summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Update python link in zlib man page.Mark Adler2011-10-022-1/+1
|
* Add a transparent write mode to gzopen() when 'T' is in the mode.Mark Adler2011-10-025-39/+82
|
* Correct documentation of gzdirect() since junk at end now ignored.Mark Adler2011-10-021-3/+1
|
* Clarify how gzopen() appends in zlib.h comments.Mark Adler2011-10-021-0/+7
|
* Merge vestigial vsnprintf determination from zutil.h to gzguts.h.Mark Adler2011-10-0214-91/+111
| | | | | | | | | This also moves some of the same from zconf.h to gzguts.h. A new function, gzflags(), was created to pass the compilation flags related to vsnprintf usage back to zlibCompileFlags() in zutil.c. In the process, various compiler configuration files were updated to include gzflags(), as well as the new gzgetc_() function added when the gzgetc() macro was introduced in a previous patch.
* Update zconf.h.cmakein on make distclean.Mark Adler2011-10-021-4/+7
|
* Include zconf.h.cmakein for windows large file support.Mark Adler2011-10-011-1/+5
|
* Include zconf.h for windows large file support.Mark Adler2011-10-011-1/+5
|
* Always add large file support for windowsTor Lillqvist2011-10-014-4/+17
|
* Update copyright dates on gz* source files.Mark Adler2011-09-303-3/+3
|
* Fix gzclose() to return the actual error last encountered.Mark Adler2011-09-302-6/+9
|
* Change gzgetc() to a macro for speed (~40% speedup in testing).Mark Adler2011-09-265-91/+119
|
* Simplify gzseek() now that raw after gzip is ignored.Mark Adler2011-09-263-6/+4
|
* Allow gzrewind() and gzseek() after a premature end-of-file.Mark Adler2011-09-261-2/+3
|
* Allow gzread() and related to continue after gzclearerr().Mark Adler2011-09-262-179/+93
| | | | | | | | | | | | | | | | | | | | | Before this fix, gzread() would lose data if a premature end of file was encountered. This prevented gzread() from being used on a file that was being written concurrently. Now gzread() returns all of the data it has available before indicating a premature end of file. This also changes the error returned on a premature end of file from Z_DATA_ERROR to Z_BUF_ERROR. This allows the user to determine if the error is recoverable, which it is if Z_BUF_ERROR is returned. If a Z_DATA_ERROR is returned, then the error is not recoverable. This patch replaces the functionality of a previous patch that fixed reading through an empty gzip stream in a concatenation of gzip streams. To implement this fix, a noticeable rewrite of gzread.c was needed. The patch has the added advantage of using inflate's gzip processing instead of replicating the functionality in gzread.c. This makes the gz code a little simpler.
* Change gzread() and related to ignore junk after gzip streams.Mark Adler2011-09-242-6/+15
| | | | | | | | | | Previously the new gz* functions (introduced in 1.2.4) would read and return raw data after the last gzip stream. This is inconsistent with the behavior of gzip and the previous versions of zlib. Now when one or more gzip streams have been decoded from the file, which is then followed by data that is not a gzip stream (as detemined by not finding the magic header), then that subsequent trailing garbage is ignored, and no error is returned.
* Correct error in comment for gz_make().Mark Adler2011-09-241-1/+1
|
* Fix bug in gzgets() for a concatenated empty gzip stream.Mark Adler2011-09-241-6/+6
|
* Correct spelling error in gzread.cMark Adler2011-09-241-1/+1
|
* Update python link in READMEMark Adler2011-09-231-1/+1
|
* Add assertions to fill_window() in deflate.c to match comments.Mark Adler2011-09-221-0/+5
|
* Assure that high-water mark initialization is always applied in deflate.Mark Adler2011-09-221-1/+1
|
* Avoid searching past window for Z_RLE strategy.Mark Adler2011-09-221-3/+4
| | | | | | | Without this, Z_RLE could under some circumstances read one byte past the end of the allocated sliding window. This would normally not be a problem unless the window is right at the end of an allocated page, or if a bounds checker is being used.
* use relative symlinks for shared libsMike Frysinger2011-09-111-2/+2
| | | | | | | | | The DESTDIR should not be encoded into symlinks as it is only a temporary path. Further, since we install the symlinks into the same dir as the files, let's use relative links so that they can always resolve. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Add .gitignore [Frysinger]Mark Adler2011-09-111-0/+19
|
* fix ld error: unable to find version dependency `ZLIB_1.2.5'Török Edwin2011-09-111-1/+1
|
* Change version numbers to 1.2.5.2 and release datesMark Adler2011-09-1119-39/+42
| | | | | | Also added "-motley" to ZLIB_VERSION in zlib.h, so that versions in-between 1.2.5.1 and 1.2.5.2 that are pulled down from github can be identified as such if bugs are reported on them.
* zlib 1.2.5.1v1.2.5.1Mark Adler2011-09-1155-522/+1004
|
* zlib 1.2.5v1.2.5Mark Adler2011-09-0925-42/+55
|
* zlib 1.2.4.5v1.2.4.5Mark Adler2011-09-0931-106/+119
|
* zlib 1.2.4.4v1.2.4.4Mark Adler2011-09-0922-81/+138
|
* zlib 1.2.4.3v1.2.4.3Mark Adler2011-09-0924-73/+122
|
* zlib 1.2.4.2v1.2.4.2Mark Adler2011-09-0937-148/+176
|
* zlib 1.2.4.1v1.2.4.1Mark Adler2011-09-0930-130/+248
|
* zlib 1.2.4v1.2.4Mark Adler2011-09-0914-168/+27
|
* zlib 1.2.4-pre2v1.2.4-pre2Mark Adler2011-09-0914-19/+22
|
* zlib 1.2.4-pre1v1.2.4-pre1Mark Adler2011-09-0967-3019/+2822
|
* zlib 1.2.3.9v1.2.3.9Mark Adler2011-09-09102-7399/+3820
|
* zlib 1.2.3.8v1.2.3.8Mark Adler2011-09-0987-1455/+4936
|
* zlib 1.2.3.7v1.2.3.7Mark Adler2011-09-0928-553/+745
|
* zlib 1.2.3.6v1.2.3.6Mark Adler2011-09-0931-2110/+1061
|
* zlib 1.2.3.5v1.2.3.5Mark Adler2011-09-0974-1855/+7120
|
* zlib 1.2.3.4v1.2.3.4Mark Adler2011-09-0945-852/+3642
|
* zlib 1.2.3.3v1.2.3.3Mark Adler2011-09-0922-240/+583
|
* zlib 1.2.3.2v1.2.3.2Mark Adler2011-09-0923-722/+344
|
* zlib 1.2.3.1v1.2.3.1Mark Adler2011-09-0950-495/+3641
|
* zlib 1.2.3v1.2.3Mark Adler2011-09-0965-6683/+11095
|
* zlib 1.2.2.4v1.2.2.4Mark Adler2011-09-0929-137/+1035
|
* zlib 1.2.2.3v1.2.2.3Mark Adler2011-09-0963-8906/+11616
|
* zlib 1.2.2.2v1.2.2.2Mark Adler2011-09-0939-177/+2178
|