diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-09 23:46:39 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-09 23:46:39 +0000 |
commit | c3dcd5324f8e615947e96c9cb7a883736e580176 (patch) | |
tree | cb1fec67adac3806df7d70905492ead0c81bcd4b /gnu | |
parent | 3e223a98eb0a9a6eaf43fa4c17751026e5fdc2ef (diff) |
We now have getopt_long() in libc, no need to build a private copy.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/gzip/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/gzip/Makefile b/gnu/usr.bin/gzip/Makefile index f04f5adc0fb..5c4bb660882 100644 --- a/gnu/usr.bin/gzip/Makefile +++ b/gnu/usr.bin/gzip/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.12 1999/02/25 04:24:28 millert Exp $ +# $OpenBSD: Makefile,v 1.13 2002/12/09 23:46:38 millert Exp $ # $NetBSD: Makefile,v 1.17 1995/10/24 22:18:34 jtc Exp $ PROG= gzip SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \ - crypt.c lzw.c unlzw.c unlzh.c unpack.c getopt.c + crypt.c lzw.c unlzw.c unlzh.c unpack.c MAN= gzexe.1 gzip.1 zdiff.1 zforce.1 zgrep.1 zmore.1 znew.1 CFLAGS+=-DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DDIRENT=1 |