diff options
author | ru <ru@FreeBSD.org> | 2001-06-11 17:41:58 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-06-11 17:41:58 +0000 |
commit | a0e4020b845cd38a8c6ba92d53971c2a049c1ee3 (patch) | |
tree | 7dec0b79255be89cb129c24f713b8b0881782d79 /sbin/ipfstat | |
parent | 9cbadc39d11c22e00c2643858d9e29188b58058a (diff) | |
download | FreeBSD-src-a0e4020b845cd38a8c6ba92d53971c2a049c1ee3.zip FreeBSD-src-a0e4020b845cd38a8c6ba92d53971c2a049c1ee3.tar.gz |
Backout previous change (removal of -I${.CURDIR}/../../sys/netinet).
This is needed to pick up the right headers. Wrong headers from
src/contrib/ipfilter are used otherwise.
The right fix would be to fix contrib/ipfilter C sources to pick up
headers from <sys/netinet>.
Noticed by: peter
Diffstat (limited to 'sbin/ipfstat')
-rw-r--r-- | sbin/ipfstat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ipfstat/Makefile b/sbin/ipfstat/Makefile index fd6a5ff..ed4d62e 100644 --- a/sbin/ipfstat/Makefile +++ b/sbin/ipfstat/Makefile @@ -5,7 +5,7 @@ PROG= ipfstat MAN= ipfstat.8 SRCS= fils.c parse.c opt.c kmem.c facpri.c common.c -CFLAGS+=-DUSE_INET6 -DIPL_NAME=\"/dev/ipl\" -DSTATETOP -I${.CURDIR}/../../contrib/ipfilter +CFLAGS+=-DUSE_INET6 -DIPL_NAME=\"/dev/ipl\" -DSTATETOP -I- -I${.CURDIR}/../../sys/netinet -I${.CURDIR}/../../sys -I${.CURDIR}/../../contrib/ipfilter DPADD= ${NCURSES} LDADD= -lncurses |