diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2017-04-16 00:52:55 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2017-04-16 00:52:55 +0000 |
commit | 4910c437c2c6ddcfeacacfe18080b2e190e5e848 (patch) | |
tree | b7cd95e81c7e90e9908560cb9d38319540c0ab26 /usr.sbin/dhcrelay6/Makefile | |
parent | 26b254c08bafb4ba2eb77c23a1418dc792e973c2 (diff) |
Remove -Werror to make dhcrelay6 on gcc3 architecture successfully.
ok reyk
Diffstat (limited to 'usr.sbin/dhcrelay6/Makefile')
-rw-r--r-- | usr.sbin/dhcrelay6/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcrelay6/Makefile b/usr.sbin/dhcrelay6/Makefile index 6dd1fe517e6..50c6a6b9a57 100644 --- a/usr.sbin/dhcrelay6/Makefile +++ b/usr.sbin/dhcrelay6/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2017/03/17 14:45:16 rzalamena Exp $ +# $OpenBSD: Makefile,v 1.2 2017/04/16 00:52:54 aoyama Exp $ .include <bsd.own.mk> @@ -6,7 +6,7 @@ SRCS= dhcrelay6.c dispatch.c log.c bpf.c packet.c PROG= dhcrelay6 MAN= dhcrelay6.8 -CFLAGS+=-Wall -Wextra -Werror +CFLAGS+=-Wall -Wextra CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations CFLAGS+=-Wshadow -Wpointer-arith -Wsign-compare |