]> git.lizzy.rs Git - zlib.git/log
zlib.git
12 years agozlib 1.2.5.2 v1.2.5.2
Mark Adler [Sun, 18 Dec 2011 18:39:45 +0000 (10:39 -0800)]
zlib 1.2.5.2

12 years agoRemove hard-coding of resource compiler in CMakeLists.txt [Blammo]
Mark Adler [Sat, 17 Dec 2011 22:28:33 +0000 (14:28 -0800)]
Remove hard-coding of resource compiler in CMakeLists.txt [Blammo]

12 years agoDocument gzread() capability to read concurrently written files.
Mark Adler [Wed, 14 Dec 2011 12:21:00 +0000 (04:21 -0800)]
Document gzread() capability to read concurrently written files.

Also since gzread() will no longer return an error for an incomplete
gzip file, have gzclose() return an error if the last gzread() ended
in the middle of a gzip stream.

12 years agoAvoid use of Z_BUF_ERROR in gz* functions except for premature EOF.
Mark Adler [Wed, 14 Dec 2011 06:25:59 +0000 (22:25 -0800)]
Avoid use of Z_BUF_ERROR in gz* functions except for premature EOF.

Z_BUF_ERROR was also being used for an unsuccessful gzungetc and for buffer
lengths that didn't fit in an int.  Those uses were changed to Z_DATA_ERROR
in order to assure that Z_BUF_ERROR occurs only when a premature end of
input occurs, indicating that gzclearerr() can be used.

12 years agoFix bug in gzread.c when end-of-file is reached.
Mark Adler [Mon, 12 Dec 2011 07:30:56 +0000 (23:30 -0800)]
Fix bug in gzread.c when end-of-file is reached.

12 years agoFix gzeof() to behave just like feof() when read is not past end of file.
Mark Adler [Thu, 13 Oct 2011 06:24:31 +0000 (23:24 -0700)]
Fix gzeof() to behave just like feof() when read is not past end of file.

Before, gzeof() would return true (accurately) when the last read request
went just up to the end of the uncompressed data.  In the analogous case,
feof() would return false, only returning true when a read request goes
past the end of the file.  This patch corrects gzeof() to behave in the
same way as feof(), as noted in the zlib.h documentation.

12 years agoDo not set strm->adler when doing raw inflate.
Mark Adler [Sun, 11 Dec 2011 06:27:24 +0000 (22:27 -0800)]
Do not set strm->adler when doing raw inflate.

12 years agoHave inflate() with Z_FINISH avoid the allocation of a window.
Mark Adler [Fri, 9 Dec 2011 03:03:56 +0000 (19:03 -0800)]
Have inflate() with Z_FINISH avoid the allocation of a window.

inflate() avoided that allocation normally, until it was modified to
update the window on a normal completion so that inflateResetKeep()
could work.  This patch restores that behavior, but only when
Z_FINISH is used successfully to complete an inflation of a stream in
a single call of inflate().  The comments in zlib.h have been updated
accordingly.

12 years agoFix gzwrite.c to accommodate reduced memory zlib compilation.
Mark Adler [Thu, 8 Dec 2011 18:16:31 +0000 (10:16 -0800)]
Fix gzwrite.c to accommodate reduced memory zlib compilation.

gzwrite.c had hard-coded parameters to deflateInit2() which could
contradict compile-time options for the use of less memory and fewer
code bits.  This patch suggested by Karsten Saunte fixes that.

12 years agoEnable dictionary setting in middle of stream, and keeping the dictionary.
Mark Adler [Thu, 8 Dec 2011 07:57:37 +0000 (23:57 -0800)]
Enable dictionary setting in middle of stream, and keeping the dictionary.

This patch adds the deflateResetKeep() function to retain the sliding
window for the next deflate operation, and fixes an inflateResetKeep()
problem that came from inflate() not updating the window when the
stream completed.  This enables constructing and decompressing a series
of concatenated deflate streams where each can depend on the history of
uncompressed data that precedes it.

This generalizes deflateSetDictionary() and inflateSetDictionary() to
permit setting the dictionary in the middle of a stream for raw deflate
and inflate.  This in combination with the Keep functions enables a
scheme for updating files block by block with the transmission of
compressed data, where blocks are sent with deflateResetKeep() to
retain history for better compression, and deflateSetDictionary() is
used for blocks already present at the receiver to skip compression but
insert that data in the history, again for better compression.  The
corresponding inflate calls are done on the receiver side.

12 years agoClean up infcover.c.
Mark Adler [Thu, 1 Dec 2011 04:19:05 +0000 (18:19 -1000)]
Clean up infcover.c.

12 years agoTest the inflate code with full coverage.
Mark Adler [Sun, 20 Nov 2011 16:43:17 +0000 (08:43 -0800)]
Test the inflate code with full coverage.

Add a cover target in Makefile and the test/infcover.c test program
to cover all of the code lines in the inf*.c source files.  The
coverage is run with memory allocation checking in order to expose
memory leaks.  The coverage testing is run using:

    ./configure --cover && make cover

12 years agoRemove code from inflate.c and infback.c that is impossible to execute.
Mark Adler [Sun, 20 Nov 2011 16:43:46 +0000 (08:43 -0800)]
Remove code from inflate.c and infback.c that is impossible to execute.

During coverage testing it was discovered that these two lines could
never pull more bits, since the immediately preceding for loop assures
that all of the code's bits are already pulled.

12 years agoSimplify incomplete code table filling in inflate_table().
Mark Adler [Sun, 6 Nov 2011 23:02:02 +0000 (15:02 -0800)]
Simplify incomplete code table filling in inflate_table().

Due to earlier changes in the error checking in inflate_table(), the
code to fill in a table for an incomplete code handled cases that can
never actually occur.  This simplifies that code to handle the only
possible case, which is a single empty table entry for a code with
a single symbol with a length of one bit.

12 years agoMove example.c and minigzip.c to test/.
Mark Adler [Tue, 22 Nov 2011 02:56:02 +0000 (18:56 -0800)]
Move example.c and minigzip.c to test/.

12 years agoInclude io.h for Turbo C / Borland C++.
Mark Adler [Tue, 22 Nov 2011 02:38:37 +0000 (18:38 -0800)]
Include io.h for Turbo C / Borland C++.

12 years agoFacilitate compilation with Borland C++ for pragmas and vsnprintf.
Mark Adler [Sat, 19 Nov 2011 07:14:14 +0000 (23:14 -0800)]
Facilitate compilation with Borland C++ for pragmas and vsnprintf.

12 years agoChange ON macro to Z_ARG to avoid application conflicts.
Mark Adler [Sun, 13 Nov 2011 21:35:02 +0000 (13:35 -0800)]
Change ON macro to Z_ARG to avoid application conflicts.

Using "ON" was a dumb idea, since it is common to have macros with
names like ON and OFF.  In fact, defining the OF macro back in 1995
was a bad idea, but now we're stuck with it.  Attempts to rename OF
to something else breaks many applications.

12 years agoSplit off AR options in Makefile.in and configure.
Mark Adler [Sun, 13 Nov 2011 21:04:26 +0000 (13:04 -0800)]
Split off AR options in Makefile.in and configure.

Adds ARFLAGS variable for options, where AR is now just the command
name.  So now $(AR) $(ARFLAGS) is used to build the static library.

12 years agoAdd files in contrib/minizip to aid in building libminizip.
Mark Adler [Sun, 13 Nov 2011 20:30:32 +0000 (12:30 -0800)]
Add files in contrib/minizip to aid in building libminizip.

Patch provided by Franz Schrober.

12 years agoNote behavior of uncompress() to provide as much data as it can.
Mark Adler [Sun, 23 Oct 2011 19:25:55 +0000 (12:25 -0700)]
Note behavior of uncompress() to provide as much data as it can.

12 years agoAdd comment to gzdopen() in zlib.h to use dup() when using fileno().
Mark Adler [Thu, 20 Oct 2011 16:07:58 +0000 (09:07 -0700)]
Add comment to gzdopen() in zlib.h to use dup() when using fileno().

A problem surfaced in a multi-threaded application where fileno() was
used to get a file descriptor from an fopen(), which was then fed to
gzdopen().  The problem occurred when the gzclose() followed by the
fclose() tried to close the same file descriptor twice.  If fclose()
were not done, there would be a memory leak.  The only way out is to
dup() the file descriptor so that gzclose() closes the duplicated
file descriptor, and fclose() closes the original file descriptor.

12 years agoAdd #define ZLIB_CONST option to use const in the z_stream interface.
Mark Adler [Wed, 19 Oct 2011 06:05:37 +0000 (23:05 -0700)]
Add #define ZLIB_CONST option to use const in the z_stream interface.

This permits compilers to check for the proper treatment of next_in and
msg in the z_stream structure.  This is an option instead of the default
in order to preserve backward compatibility.  Some applications make use
of the z_stream structure outside of zlib, and perform operations such
as free(strm->next_in), which would not be permitted when next_in is
const.  The #define ZLIB_CONST needs to precede the #include "zlib.h">,
in order to make next_in and msg const pointers in the z_stream type.

12 years agoFix indentation of code in inflate.c.
Mark Adler [Sun, 9 Oct 2011 22:25:48 +0000 (15:25 -0700)]
Fix indentation of code in inflate.c.

12 years agoAdd --cover option to ./configure for gcc coverage testing.
Mark Adler [Sun, 9 Oct 2011 17:16:43 +0000 (10:16 -0700)]
Add --cover option to ./configure for gcc coverage testing.

This adds the -fprofile-arcs and -ftest-coverage options when compiling
the source code for the static library.  Those same options must then be
used when linking the static library into an executable.  This updates
Makefile.in to remove and .gitignore to ignore the files generated when
testing coverage.

12 years agoMove example.c and minigzip.c to examples/ directory.
Mark Adler [Sun, 9 Oct 2011 16:50:48 +0000 (09:50 -0700)]
Move example.c and minigzip.c to examples/ directory.

12 years agoAdd undocumented inflateResetKeep() function for CAB file decoding.
Mark Adler [Sat, 8 Oct 2011 06:00:42 +0000 (23:00 -0700)]
Add undocumented inflateResetKeep() function for CAB file decoding.

The Microsoft CAB file format compresses each block with completed
deflate streams that depend on the sliding window history of the
previous block in order to decode.  inflateResetKeep() does what
inflateReset() does, except the sliding window history from the
previous inflate operation is retained.

12 years agoAdd a ./config --solo option to make zlib subset with no libary use
Mark Adler [Fri, 7 Oct 2011 08:57:07 +0000 (01:57 -0700)]
Add a ./config --solo option to make zlib subset with no libary use

A common request has been the ability to compile zlib to require no
other libraries.  This --solo option provides that ability.  The price
is that the gz*, compress*, and uncompress functions are eliminated,
and that the user must provide memory allocation and free routines to
deflate and inflate when initializing.

12 years agoGet inffixed.h and MAKEFIXED result to match.
Mark Adler [Thu, 6 Oct 2011 03:32:32 +0000 (20:32 -0700)]
Get inffixed.h and MAKEFIXED result to match.

12 years agoUpdate python link in zlib man page.
Mark Adler [Mon, 3 Oct 2011 01:45:21 +0000 (18:45 -0700)]
Update python link in zlib man page.

12 years agoAdd a transparent write mode to gzopen() when 'T' is in the mode.
Mark Adler [Sun, 2 Oct 2011 20:24:43 +0000 (13:24 -0700)]
Add a transparent write mode to gzopen() when 'T' is in the mode.

12 years agoCorrect documentation of gzdirect() since junk at end now ignored.
Mark Adler [Sun, 2 Oct 2011 19:13:50 +0000 (12:13 -0700)]
Correct documentation of gzdirect() since junk at end now ignored.

12 years agoClarify how gzopen() appends in zlib.h comments.
Mark Adler [Sun, 2 Oct 2011 19:09:29 +0000 (12:09 -0700)]
Clarify how gzopen() appends in zlib.h comments.

12 years agoMerge vestigial vsnprintf determination from zutil.h to gzguts.h.
Mark Adler [Sun, 2 Oct 2011 18:15:00 +0000 (11:15 -0700)]
Merge vestigial vsnprintf determination from zutil.h to gzguts.h.

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.

12 years agoUpdate zconf.h.cmakein on make distclean.
Mark Adler [Sun, 2 Oct 2011 08:01:47 +0000 (01:01 -0700)]
Update zconf.h.cmakein on make distclean.

12 years agoInclude zconf.h.cmakein for windows large file support.
Mark Adler [Sat, 1 Oct 2011 17:19:36 +0000 (10:19 -0700)]
Include zconf.h.cmakein for windows large file support.

12 years agoInclude zconf.h for windows large file support.
Mark Adler [Sat, 1 Oct 2011 17:16:04 +0000 (10:16 -0700)]
Include zconf.h for windows large file support.

12 years agoAlways add large file support for windows
Tor Lillqvist [Sun, 18 Sep 2011 19:46:44 +0000 (21:46 +0200)]
Always add large file support for windows

12 years agoUpdate copyright dates on gz* source files.
Mark Adler [Sat, 1 Oct 2011 05:26:04 +0000 (22:26 -0700)]
Update copyright dates on gz* source files.

12 years agoFix gzclose() to return the actual error last encountered.
Mark Adler [Sat, 1 Oct 2011 05:19:12 +0000 (22:19 -0700)]
Fix gzclose() to return the actual error last encountered.

12 years agoChange gzgetc() to a macro for speed (~40% speedup in testing).
Mark Adler [Tue, 27 Sep 2011 05:50:28 +0000 (22:50 -0700)]
Change gzgetc() to a macro for speed (~40% speedup in testing).

12 years agoSimplify gzseek() now that raw after gzip is ignored.
Mark Adler [Tue, 27 Sep 2011 01:34:07 +0000 (18:34 -0700)]
Simplify gzseek() now that raw after gzip is ignored.

12 years agoAllow gzrewind() and gzseek() after a premature end-of-file.
Mark Adler [Tue, 27 Sep 2011 01:20:32 +0000 (18:20 -0700)]
Allow gzrewind() and gzseek() after a premature end-of-file.

12 years agoAllow gzread() and related to continue after gzclearerr().
Mark Adler [Mon, 26 Sep 2011 07:57:26 +0000 (00:57 -0700)]
Allow gzread() and related to continue after gzclearerr().

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.

12 years agoChange gzread() and related to ignore junk after gzip streams.
Mark Adler [Sat, 24 Sep 2011 17:26:07 +0000 (10:26 -0700)]
Change gzread() and related to ignore junk after gzip streams.

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.

12 years agoCorrect error in comment for gz_make().
Mark Adler [Sat, 24 Sep 2011 15:33:38 +0000 (08:33 -0700)]
Correct error in comment for gz_make().

12 years agoFix bug in gzgets() for a concatenated empty gzip stream.
Mark Adler [Sat, 24 Sep 2011 07:29:46 +0000 (00:29 -0700)]
Fix bug in gzgets() for a concatenated empty gzip stream.

12 years agoCorrect spelling error in gzread.c
Mark Adler [Sat, 24 Sep 2011 07:09:31 +0000 (00:09 -0700)]
Correct spelling error in gzread.c

12 years agoUpdate python link in README
Mark Adler [Fri, 23 Sep 2011 16:53:49 +0000 (09:53 -0700)]
Update python link in README

12 years agoAdd assertions to fill_window() in deflate.c to match comments.
Mark Adler [Fri, 23 Sep 2011 06:55:31 +0000 (23:55 -0700)]
Add assertions to fill_window() in deflate.c to match comments.

12 years agoAssure that high-water mark initialization is always applied in deflate.
Mark Adler [Fri, 23 Sep 2011 06:48:04 +0000 (23:48 -0700)]
Assure that high-water mark initialization is always applied in deflate.

12 years agoAvoid searching past window for Z_RLE strategy.
Mark Adler [Fri, 23 Sep 2011 06:45:00 +0000 (23:45 -0700)]
Avoid searching past window for Z_RLE strategy.

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.

12 years agouse relative symlinks for shared libs
Mike Frysinger [Sun, 11 Sep 2011 18:46:44 +0000 (14:46 -0400)]
use relative symlinks for shared libs

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>
12 years agoAdd .gitignore [Frysinger]
Mark Adler [Sun, 11 Sep 2011 18:50:36 +0000 (11:50 -0700)]
Add .gitignore [Frysinger]

12 years agofix ld error: unable to find version dependency `ZLIB_1.2.5'
Török Edwin [Sun, 11 Sep 2011 07:00:52 +0000 (10:00 +0300)]
fix ld error: unable to find version dependency `ZLIB_1.2.5'

12 years agoChange version numbers to 1.2.5.2 and release dates
Mark Adler [Sun, 11 Sep 2011 18:16:41 +0000 (11:16 -0700)]
Change version numbers to 1.2.5.2 and release dates

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.

12 years agozlib 1.2.5.1 v1.2.5.1
Mark Adler [Sun, 11 Sep 2011 18:04:49 +0000 (11:04 -0700)]
zlib 1.2.5.1

12 years agozlib 1.2.5 v1.2.5
Mark Adler [Sat, 10 Sep 2011 06:35:10 +0000 (23:35 -0700)]
zlib 1.2.5

12 years agozlib 1.2.4.5 v1.2.4.5
Mark Adler [Sat, 10 Sep 2011 06:34:55 +0000 (23:34 -0700)]
zlib 1.2.4.5

12 years agozlib 1.2.4.4 v1.2.4.4
Mark Adler [Sat, 10 Sep 2011 06:34:45 +0000 (23:34 -0700)]
zlib 1.2.4.4

12 years agozlib 1.2.4.3 v1.2.4.3
Mark Adler [Sat, 10 Sep 2011 06:34:38 +0000 (23:34 -0700)]
zlib 1.2.4.3

12 years agozlib 1.2.4.2 v1.2.4.2
Mark Adler [Sat, 10 Sep 2011 06:34:30 +0000 (23:34 -0700)]
zlib 1.2.4.2

12 years agozlib 1.2.4.1 v1.2.4.1
Mark Adler [Sat, 10 Sep 2011 06:34:22 +0000 (23:34 -0700)]
zlib 1.2.4.1

12 years agozlib 1.2.4 v1.2.4
Mark Adler [Sat, 10 Sep 2011 06:33:59 +0000 (23:33 -0700)]
zlib 1.2.4

12 years agozlib 1.2.4-pre2 v1.2.4-pre2
Mark Adler [Sat, 10 Sep 2011 06:33:23 +0000 (23:33 -0700)]
zlib 1.2.4-pre2

12 years agozlib 1.2.4-pre1 v1.2.4-pre1
Mark Adler [Sat, 10 Sep 2011 06:32:36 +0000 (23:32 -0700)]
zlib 1.2.4-pre1

12 years agozlib 1.2.3.9 v1.2.3.9
Mark Adler [Sat, 10 Sep 2011 06:27:26 +0000 (23:27 -0700)]
zlib 1.2.3.9

12 years agozlib 1.2.3.8 v1.2.3.8
Mark Adler [Sat, 10 Sep 2011 06:27:17 +0000 (23:27 -0700)]
zlib 1.2.3.8

12 years agozlib 1.2.3.7 v1.2.3.7
Mark Adler [Sat, 10 Sep 2011 06:27:08 +0000 (23:27 -0700)]
zlib 1.2.3.7

12 years agozlib 1.2.3.6 v1.2.3.6
Mark Adler [Sat, 10 Sep 2011 06:26:58 +0000 (23:26 -0700)]
zlib 1.2.3.6

12 years agozlib 1.2.3.5 v1.2.3.5
Mark Adler [Sat, 10 Sep 2011 06:26:49 +0000 (23:26 -0700)]
zlib 1.2.3.5

12 years agozlib 1.2.3.4 v1.2.3.4
Mark Adler [Sat, 10 Sep 2011 06:26:40 +0000 (23:26 -0700)]
zlib 1.2.3.4

12 years agozlib 1.2.3.3 v1.2.3.3
Mark Adler [Sat, 10 Sep 2011 06:26:29 +0000 (23:26 -0700)]
zlib 1.2.3.3

12 years agozlib 1.2.3.2 v1.2.3.2
Mark Adler [Sat, 10 Sep 2011 06:25:38 +0000 (23:25 -0700)]
zlib 1.2.3.2

12 years agozlib 1.2.3.1 v1.2.3.1
Mark Adler [Sat, 10 Sep 2011 06:25:27 +0000 (23:25 -0700)]
zlib 1.2.3.1

12 years agozlib 1.2.3 v1.2.3
Mark Adler [Sat, 10 Sep 2011 06:25:17 +0000 (23:25 -0700)]
zlib 1.2.3

12 years agozlib 1.2.2.4 v1.2.2.4
Mark Adler [Sat, 10 Sep 2011 06:24:52 +0000 (23:24 -0700)]
zlib 1.2.2.4

12 years agozlib 1.2.2.3 v1.2.2.3
Mark Adler [Sat, 10 Sep 2011 06:24:43 +0000 (23:24 -0700)]
zlib 1.2.2.3

12 years agozlib 1.2.2.2 v1.2.2.2
Mark Adler [Sat, 10 Sep 2011 06:24:33 +0000 (23:24 -0700)]
zlib 1.2.2.2

12 years agozlib 1.2.2.1 v1.2.2.1
Mark Adler [Sat, 10 Sep 2011 06:24:24 +0000 (23:24 -0700)]
zlib 1.2.2.1

12 years agozlib 1.2.2 v1.2.2
Mark Adler [Sat, 10 Sep 2011 06:24:02 +0000 (23:24 -0700)]
zlib 1.2.2

12 years agozlib 1.2.1.2 v1.2.1.2
Mark Adler [Sat, 10 Sep 2011 06:23:45 +0000 (23:23 -0700)]
zlib 1.2.1.2

12 years agozlib 1.2.1.1 v1.2.1.1
Mark Adler [Sat, 10 Sep 2011 06:23:38 +0000 (23:23 -0700)]
zlib 1.2.1.1

12 years agozlib 1.2.1 v1.2.1
Mark Adler [Sat, 10 Sep 2011 06:23:27 +0000 (23:23 -0700)]
zlib 1.2.1

12 years agozlib 1.2.0.8 v1.2.0.8
Mark Adler [Sat, 10 Sep 2011 06:23:14 +0000 (23:23 -0700)]
zlib 1.2.0.8

12 years agozlib 1.2.0.7 v1.2.0.7
Mark Adler [Sat, 10 Sep 2011 06:23:01 +0000 (23:23 -0700)]
zlib 1.2.0.7

12 years agozlib 1.2.0.6 v1.2.0.6
Mark Adler [Sat, 10 Sep 2011 06:22:48 +0000 (23:22 -0700)]
zlib 1.2.0.6

12 years agozlib 1.2.0.5 v1.2.0.5
Mark Adler [Sat, 10 Sep 2011 06:22:37 +0000 (23:22 -0700)]
zlib 1.2.0.5

12 years agozlib 1.2.0.4 v1.2.0.4
Mark Adler [Sat, 10 Sep 2011 06:22:30 +0000 (23:22 -0700)]
zlib 1.2.0.4

12 years agozlib 1.2.0.3 v1.2.0.3
Mark Adler [Sat, 10 Sep 2011 06:22:21 +0000 (23:22 -0700)]
zlib 1.2.0.3

12 years agozlib 1.2.0.2 v1.2.0.2
Mark Adler [Sat, 10 Sep 2011 06:22:10 +0000 (23:22 -0700)]
zlib 1.2.0.2

12 years agozlib 1.2.0.1 v1.2.0.1
Mark Adler [Sat, 10 Sep 2011 06:21:57 +0000 (23:21 -0700)]
zlib 1.2.0.1

12 years agozlib 1.2.0 v1.2.0
Mark Adler [Sat, 10 Sep 2011 06:21:47 +0000 (23:21 -0700)]
zlib 1.2.0

12 years agozlib 1.1.4 v1.1.4
Mark Adler [Sat, 10 Sep 2011 06:20:42 +0000 (23:20 -0700)]
zlib 1.1.4

12 years agozlib 1.1.3 v1.1.3
Mark Adler [Sat, 10 Sep 2011 06:20:29 +0000 (23:20 -0700)]
zlib 1.1.3

12 years agozlib 1.1.2 v1.1.2
Mark Adler [Sat, 10 Sep 2011 06:20:15 +0000 (23:20 -0700)]
zlib 1.1.2

12 years agozlib 1.1.1 v1.1.1
Mark Adler [Sat, 10 Sep 2011 06:20:07 +0000 (23:20 -0700)]
zlib 1.1.1

12 years agozlib 1.1.0 v1.1.0
Mark Adler [Sat, 10 Sep 2011 06:19:55 +0000 (23:19 -0700)]
zlib 1.1.0

12 years agozlib 1.0.9 v1.0.9
Mark Adler [Sat, 10 Sep 2011 06:19:21 +0000 (23:19 -0700)]
zlib 1.0.9

12 years agozlib 1.0.8 v1.0.8
Mark Adler [Sat, 10 Sep 2011 06:18:57 +0000 (23:18 -0700)]
zlib 1.0.8