Add gzip based on libz. This is faster for decompression and yields
authorJoerg Sonnenberger <joerg@dragonflybsd.org>
Tue, 26 Oct 2004 11:19:31 +0000 (11:19 +0000)
committerJoerg Sonnenberger <joerg@dragonflybsd.org>
Tue, 26 Oct 2004 11:19:31 +0000 (11:19 +0000)
commit62529567e67ed1ad8e1a05a0a44433f64f0c1dbf
tree4aab078375f8b4e22f1edfa2e3c546387ab7c6ea
parentf13936cc76c236d05b0d74e5ff5546c6488ecf8c
Add gzip based on libz. This is faster for decompression and yields
better compression than GNU gzip (300 KB for the plan9 ISO image).

The optional support for decompression of compress and bzip2 is disabled,
the normal frontends should be used instead. They can be activated by
setting GZIP_UNCOMPRESS and GZIP_UNBZIP2 respectively.

The only missing features from GNU gzip are the omission of zip support
(it could only handle the first entry anyway) and unpack support.

This differs from the NetBSD version in that all compile time warnings
has been fixed.

Obtained-from: NetBSD
17 files changed:
usr.bin/gzip/Makefile [new file with mode: 0644]
usr.bin/gzip/gzexe [new file with mode: 0644]
usr.bin/gzip/gzexe.1 [new file with mode: 0644]
usr.bin/gzip/gzip.1 [new file with mode: 0644]
usr.bin/gzip/gzip.c [new file with mode: 0644]
usr.bin/gzip/unbzip2.c [new file with mode: 0644]
usr.bin/gzip/zdiff [new file with mode: 0644]
usr.bin/gzip/zdiff.1 [new file with mode: 0644]
usr.bin/gzip/zforce [new file with mode: 0644]
usr.bin/gzip/zforce.1 [new file with mode: 0644]
usr.bin/gzip/zgrep [new file with mode: 0644]
usr.bin/gzip/zgrep.1 [new file with mode: 0644]
usr.bin/gzip/zmore [new file with mode: 0644]
usr.bin/gzip/zmore.1 [new file with mode: 0644]
usr.bin/gzip/znew [new file with mode: 0644]
usr.bin/gzip/znew.1 [new file with mode: 0644]
usr.bin/gzip/zuncompress.c [new file with mode: 0644]