Module Name: src
Committed By: tsutsui
Date: Sun Jun 19 01:25:35 UTC 2011
Modified Files:
src/distrib/utils/x_gzip: Makefile
Log Message:
Add -DNO_PACK_SUPPORT and -DNO_XZ_SUPPORT to CPPFLAGS to omit
extra algorithm not used in installer.
XXX: should we use positive options in usr.bin/gzip/Makefile?
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/distrib/utils/x_gzip/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/distrib/utils/x_gzip/Makefile
diff -u src/distrib/utils/x_gzip/Makefile:1.7 src/distrib/utils/x_gzip/Makefile:1.8
--- src/distrib/utils/x_gzip/Makefile:1.7 Sun Mar 28 04:10:43 2004
+++ src/distrib/utils/x_gzip/Makefile Sun Jun 19 01:25:35 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2004/03/28 04:10:43 mrg Exp $
+# $NetBSD: Makefile,v 1.8 2011/06/19 01:25:35 tsutsui Exp $
# Build a tiny limited gzip (i.e. for tiny boot media)
SRCDIR= ${.CURDIR}/../../../usr.bin/gzip
@@ -6,7 +6,11 @@
PROG= gzip
NOMAN= # defined
-CPPFLAGS+= -DSMALL -DNO_BZIP2_SUPPORT -DNO_COMPRESS_SUPPORT
+CPPFLAGS+= -DSMALL
+CPPFLAGS+= -DNO_BZIP2_SUPPORT
+CPPFLAGS+= -DNO_COMPRESS_SUPPORT
+CPPFLAGS+= -DNO_PACK_SUPPORT
+CPPFLAGS+= -DNO_XZ_SUPPORT
DPADD= ${LIBZ}
LDADD= -lz