diff options
author | bapt <bapt@FreeBSD.org> | 2015-06-03 13:32:28 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-06-03 13:32:28 +0000 |
commit | 635343e5d69d48aae0be545de8a5145ec1404ecf (patch) | |
tree | e60b60e30c6c209b606bd1475fe9b858c1e214c6 /usr.bin/mandoc | |
parent | 0bbde920403a75d068e6edfd74cedfba8cb791a0 (diff) | |
download | FreeBSD-src-635343e5d69d48aae0be545de8a5145ec1404ecf.zip FreeBSD-src-635343e5d69d48aae0be545de8a5145ec1404ecf.tar.gz |
Replace the gunzip(1) system by a minimalistic zlib based implementation.
This allows to not depend on gunzip(1) at bootstrap time, and is good enough to
wait for upstream real implementation using zlib.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mandoc/Makefile b/usr.bin/mandoc/Makefile index e2c59cf..faa46ed 100644 --- a/usr.bin/mandoc/Makefile +++ b/usr.bin/mandoc/Makefile @@ -84,6 +84,6 @@ WARNS?= 2 CFLAGS+= -DHAVE_CONFIG_H \ -I${.CURDIR}/../../lib/libohash/ \ -I${.CURDIR}/../../contrib/sqlite3 -LIBADD= ohash sqlite3 +LIBADD= ohash sqlite3 z .include <bsd.prog.mk> |