diff options
author | jlemon <jlemon@FreeBSD.org> | 2001-09-03 16:37:16 +0000 |
---|---|---|
committer | jlemon <jlemon@FreeBSD.org> | 2001-09-03 16:37:16 +0000 |
commit | d0716116a5bed35bb46011820e99675026982238 (patch) | |
tree | c3ad027ffddeddf7eeed9c991d6696c1b8733350 /sbin/ipfstat | |
parent | faae6c9a640486ffa8332f4d53a0dad8b93fc25d (diff) | |
download | FreeBSD-src-d0716116a5bed35bb46011820e99675026982238.zip FreeBSD-src-d0716116a5bed35bb46011820e99675026982238.tar.gz |
IPFilter source code in contrib/ipfilter apparently can't make up its mind
where the headers should live, as the code references both "ip_fil.h" and
"netinet/ip_fil.h" (among others). As a consequence, put both
sys/contrib/ipfilter and sys/contrib/ipfilter/netinet to the include path
so either variant works.
PR: 29384
Pointed out by: Thomas.Quinot@Cuivre.FR.EU.ORG
Diffstat (limited to 'sbin/ipfstat')
-rw-r--r-- | sbin/ipfstat/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/ipfstat/Makefile b/sbin/ipfstat/Makefile index f9a83a7..7e20bc9 100644 --- a/sbin/ipfstat/Makefile +++ b/sbin/ipfstat/Makefile @@ -7,6 +7,7 @@ MAN= ipfstat.8 SRCS= fils.c parse.c opt.c kmem.c facpri.c common.c CFLAGS+=-DUSE_INET6 -DIPL_NAME=\"/dev/ipl\" -DSTATETOP CFLAGS+=-I${.CURDIR}/../../sys/contrib/ipfilter/netinet +CFLAGS+=-I${.CURDIR}/../../sys/contrib/ipfilter CFLAGS+=-I${.CURDIR}/../../contrib/ipfilter DPADD= ${LIBNCURSES} |