From e75d098cef43f86120a3732fcef6d0730c95d0e3 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Sun, 31 Oct 2004 10:26:26 +0000 Subject: [PATCH] We have to support uncompress by default, because zcat is used e.g. by the port system for both gzip and compress files. Therefore replace GZIP_UNCOMPRESS with NO_GZIP_UNCOMPRESS and the reverse meaning. --- usr.bin/gzip/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/gzip/Makefile b/usr.bin/gzip/Makefile index 1b1f52c280..f4505fbc72 100644 --- a/usr.bin/gzip/Makefile +++ b/usr.bin/gzip/Makefile @@ -1,5 +1,5 @@ # $NetBSD: Makefile,v 1.8 2004/01/01 02:44:09 mrg Exp $ -# $DragonFly: src/usr.bin/gzip/Makefile,v 1.1 2004/10/26 11:19:31 joerg Exp $ +# $DragonFly: src/usr.bin/gzip/Makefile,v 1.2 2004/10/31 10:26:26 joerg Exp $ PROG= gzip SRCS= gzip.c @@ -11,7 +11,7 @@ WARNS= 6 NOSHARED?= yes -.if !defined(GZIP_UNCOMPRESS) +.if defined(NO_GZIP_UNCOMPRESS) CFLAGS+= -DNO_COMPRESS_SUPPORT .endif .if defined(GZIP_UNBZIP2) -- 2.41.0