2107b6c68e
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
14 lines
397 B
Makefile
14 lines
397 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/ipfilter ${.CURDIR}/../../contrib/ipfilter/man
|
|
|
|
PROG= ipnat
|
|
MAN= ipnat.1 ipnat.4 ipnat.5
|
|
MLINKS= ipnat.5 ipnat.conf.5
|
|
SRCS= ipnat.c kmem.c natparse.c common.c
|
|
CFLAGS+=-DUSE_INET6 -DIPL_NAME=\"/dev/ipl\" -I- -I${.CURDIR}/../../sys/netinet -I${.CURDIR}/../../sys -I${.CURDIR}/../../contrib/ipfilter
|
|
|
|
MAINTAINER= guido@freebsd.org
|
|
|
|
.include <bsd.prog.mk>
|