Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
pigz version 2.3.1
  • Loading branch information
madler committed Oct 10, 2013
1 parent 77321f6 commit 1c9c03b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README
@@ -1,4 +1,4 @@
pigz 2.2.6 (xx Oct 2012) by Mark Adler
pigz 2.3.1 (9 Oct 2013) by Mark Adler

pigz, which stands for Parallel Implementation of GZip, is a fully functional
replacement for gzip that exploits multiple processors and multiple cores to
Expand All @@ -14,8 +14,10 @@ install the executable wherever you like in your path (e.g. /usr/local/bin/).
Type "pigz" to see the command help and all of the command options.

The latest version of pigz can be found at http://zlib.net/pigz/ . You need
zlib version 1.2.3 or later to compile pigz. You can find the latest version
of zlib at http://zlib.net/ . You can look in pigz.c for the change history.
zlib version 1.2.3 or later to compile pigz. zlib version 1.2.6 or later is
recommended, which reduces the overhead between blocks. You can find the
latest version of zlib at http://zlib.net/ . You can look in pigz.c for the
change history.

Questions, comments, bug reports, fixes, etc. can be emailed to Mark at his
address in the license below.
Expand Down
11 changes: 9 additions & 2 deletions pigz.c
@@ -1,6 +1,6 @@
/* pigz.c -- parallel implementation of gzip
* Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Mark Adler
* Version 2.3.1 xx Mar 2013 Mark Adler
* Version 2.3.1 9 Oct 2013 Mark Adler
*/

/*
Expand Down Expand Up @@ -154,7 +154,14 @@
Do not decompress concatenated zlib streams (just gzip)
Add option for compression level 11 to use zopfli
Fix handling of junk after compressed data
2.3.1 xx Mar 2013 -
2.3.1 9 Oct 2013 Fix builds of pigzt and pigzn to include zopfli
Add -lm, needed to link log function on some systems
Respect LDFLAGS in Makefile, use CFLAGS consistently
Add memory allocation tracking
Fix casting error in uncompressed length calculation
Update zopfli to Mar 10, 2013 Google state
Support zopfli in single thread case
Add -F, -I, -M, and -O options for zopfli tuning
*/

#define VERSION "pigz 2.3.1\n"
Expand Down

0 comments on commit 1c9c03b

Please sign in to comment.