diff options
author | Renato Botelho <garga@FreeBSD.org> | 2016-05-13 09:40:50 -0300 |
---|---|---|
committer | Luiz Otavio O Souza <luiz@netgate.com> | 2016-07-13 14:59:14 -0500 |
commit | da4686f797ac13fdb51f359fa296d816d77097ff (patch) | |
tree | 47b5285a8f019273d1f907ff552e69721ed2d6e6 | |
parent | e1f27fb12740d1fe0ecc0bec46d17020cb4b4983 (diff) | |
download | FreeBSD-ports-da4686f797ac13fdb51f359fa296d816d77097ff.zip FreeBSD-ports-da4686f797ac13fdb51f359fa296d816d77097ff.tar.gz |
Turn -Werror off to fix build on 11 without creating differences from original code from tcpdump
(cherry picked from commit 6bef8b4cd6575713b5c7724ca8dd5d14249f4631)
-rwxr-xr-x | sysutils/filterlog/Makefile | 2 | ||||
-rw-r--r-- | sysutils/filterlog/files/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/filterlog/Makefile b/sysutils/filterlog/Makefile index 7c59ab4..a4f3a83 100755 --- a/sysutils/filterlog/Makefile +++ b/sysutils/filterlog/Makefile @@ -1,6 +1,6 @@ PORTNAME= filterlog PORTVERSION= 0.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= # empty DISTFILES= # none diff --git a/sysutils/filterlog/files/Makefile b/sysutils/filterlog/files/Makefile index 5931147..da34b76 100644 --- a/sysutils/filterlog/files/Makefile +++ b/sysutils/filterlog/files/Makefile @@ -9,7 +9,7 @@ INSTALL?= /usr/bin/install OBJS= print-ip.o print-ip6.o print-ip6opts.o print-icmp.o print-tcp.o print-mobility.c filterlog.o -WARNS= -Wsystem-headers -Werror -Wall -Wno-format-y2k -W \ +WARNS= -Wsystem-headers -Wall -Wno-format-y2k -W \ -Wno-unused-parameter -Wstrict-prototypes \ -Wmissing-prototypes -Wpointer-arith -Wreturn-type \ -Wcast-qual -Wwrite-strings -Wswitch -Wshadow \ |