Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Update python link in zlib man page. | Mark Adler | 2011-10-02 | 2 | -1/+1 | |
| | ||||||
* | Add a transparent write mode to gzopen() when 'T' is in the mode. | Mark Adler | 2011-10-02 | 5 | -39/+82 | |
| | ||||||
* | Correct documentation of gzdirect() since junk at end now ignored. | Mark Adler | 2011-10-02 | 1 | -3/+1 | |
| | ||||||
* | Clarify how gzopen() appends in zlib.h comments. | Mark Adler | 2011-10-02 | 1 | -0/+7 | |
| | ||||||
* | Merge vestigial vsnprintf determination from zutil.h to gzguts.h. | Mark Adler | 2011-10-02 | 14 | -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 Adler | 2011-10-02 | 1 | -4/+7 | |
| | ||||||
* | Include zconf.h.cmakein for windows large file support. | Mark Adler | 2011-10-01 | 1 | -1/+5 | |
| | ||||||
* | Include zconf.h for windows large file support. | Mark Adler | 2011-10-01 | 1 | -1/+5 | |
| | ||||||
* | Always add large file support for windows | Tor Lillqvist | 2011-10-01 | 4 | -4/+17 | |
| | ||||||
* | Update copyright dates on gz* source files. | Mark Adler | 2011-09-30 | 3 | -3/+3 | |
| | ||||||
* | Fix gzclose() to return the actual error last encountered. | Mark Adler | 2011-09-30 | 2 | -6/+9 | |
| | ||||||
* | Change gzgetc() to a macro for speed (~40% speedup in testing). | Mark Adler | 2011-09-26 | 5 | -91/+119 | |
| | ||||||
* | Simplify gzseek() now that raw after gzip is ignored. | Mark Adler | 2011-09-26 | 3 | -6/+4 | |
| | ||||||
* | Allow gzrewind() and gzseek() after a premature end-of-file. | Mark Adler | 2011-09-26 | 1 | -2/+3 | |
| | ||||||
* | Allow gzread() and related to continue after gzclearerr(). | Mark Adler | 2011-09-26 | 2 | -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 Adler | 2011-09-24 | 2 | -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 Adler | 2011-09-24 | 1 | -1/+1 | |
| | ||||||
* | Fix bug in gzgets() for a concatenated empty gzip stream. | Mark Adler | 2011-09-24 | 1 | -6/+6 | |
| | ||||||
* | Correct spelling error in gzread.c | Mark Adler | 2011-09-24 | 1 | -1/+1 | |
| | ||||||
* | Update python link in README | Mark Adler | 2011-09-23 | 1 | -1/+1 | |
| | ||||||
* | Add assertions to fill_window() in deflate.c to match comments. | Mark Adler | 2011-09-22 | 1 | -0/+5 | |
| | ||||||
* | Assure that high-water mark initialization is always applied in deflate. | Mark Adler | 2011-09-22 | 1 | -1/+1 | |
| | ||||||
* | Avoid searching past window for Z_RLE strategy. | Mark Adler | 2011-09-22 | 1 | -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 libs | Mike Frysinger | 2011-09-11 | 1 | -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 Adler | 2011-09-11 | 1 | -0/+19 | |
| | ||||||
* | fix ld error: unable to find version dependency `ZLIB_1.2.5' | Török Edwin | 2011-09-11 | 1 | -1/+1 | |
| | ||||||
* | Change version numbers to 1.2.5.2 and release dates | Mark Adler | 2011-09-11 | 19 | -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.1 | Mark Adler | 2011-09-11 | 55 | -522/+1004 | |
| | ||||||
* | zlib 1.2.5v1.2.5 | Mark Adler | 2011-09-09 | 25 | -42/+55 | |
| | ||||||
* | zlib 1.2.4.5v1.2.4.5 | Mark Adler | 2011-09-09 | 31 | -106/+119 | |
| | ||||||
* | zlib 1.2.4.4v1.2.4.4 | Mark Adler | 2011-09-09 | 22 | -81/+138 | |
| | ||||||
* | zlib 1.2.4.3v1.2.4.3 | Mark Adler | 2011-09-09 | 24 | -73/+122 | |
| | ||||||
* | zlib 1.2.4.2v1.2.4.2 | Mark Adler | 2011-09-09 | 37 | -148/+176 | |
| | ||||||
* | zlib 1.2.4.1v1.2.4.1 | Mark Adler | 2011-09-09 | 30 | -130/+248 | |
| | ||||||
* | zlib 1.2.4v1.2.4 | Mark Adler | 2011-09-09 | 14 | -168/+27 | |
| | ||||||
* | zlib 1.2.4-pre2v1.2.4-pre2 | Mark Adler | 2011-09-09 | 14 | -19/+22 | |
| | ||||||
* | zlib 1.2.4-pre1v1.2.4-pre1 | Mark Adler | 2011-09-09 | 67 | -3019/+2822 | |
| | ||||||
* | zlib 1.2.3.9v1.2.3.9 | Mark Adler | 2011-09-09 | 102 | -7399/+3820 | |
| | ||||||
* | zlib 1.2.3.8v1.2.3.8 | Mark Adler | 2011-09-09 | 87 | -1455/+4936 | |
| | ||||||
* | zlib 1.2.3.7v1.2.3.7 | Mark Adler | 2011-09-09 | 28 | -553/+745 | |
| | ||||||
* | zlib 1.2.3.6v1.2.3.6 | Mark Adler | 2011-09-09 | 31 | -2110/+1061 | |
| | ||||||
* | zlib 1.2.3.5v1.2.3.5 | Mark Adler | 2011-09-09 | 74 | -1855/+7120 | |
| | ||||||
* | zlib 1.2.3.4v1.2.3.4 | Mark Adler | 2011-09-09 | 45 | -852/+3642 | |
| | ||||||
* | zlib 1.2.3.3v1.2.3.3 | Mark Adler | 2011-09-09 | 22 | -240/+583 | |
| | ||||||
* | zlib 1.2.3.2v1.2.3.2 | Mark Adler | 2011-09-09 | 23 | -722/+344 | |
| | ||||||
* | zlib 1.2.3.1v1.2.3.1 | Mark Adler | 2011-09-09 | 50 | -495/+3641 | |
| | ||||||
* | zlib 1.2.3v1.2.3 | Mark Adler | 2011-09-09 | 65 | -6683/+11095 | |
| | ||||||
* | zlib 1.2.2.4v1.2.2.4 | Mark Adler | 2011-09-09 | 29 | -137/+1035 | |
| | ||||||
* | zlib 1.2.2.3v1.2.2.3 | Mark Adler | 2011-09-09 | 63 | -8906/+11616 | |
| | ||||||
* | zlib 1.2.2.2v1.2.2.2 | Mark Adler | 2011-09-09 | 39 | -177/+2178 | |
| |