Sat Sep 15 17:46:25 2012 UTC ()
does not need -I${NETBSDSRCDIR}/sys/dist/ipf here, the include files
are installed in /usr/include/netinet


(plunky)
diff -r1.6 -r1.7 src/usr.sbin/pf/ftp-proxy/Makefile

cvs diff -r1.6 -r1.7 src/usr.sbin/pf/ftp-proxy/Makefile (expand / switch to unified diff)

--- src/usr.sbin/pf/ftp-proxy/Makefile 2011/02/04 00:19:52 1.6
+++ src/usr.sbin/pf/ftp-proxy/Makefile 2012/09/15 17:46:25 1.7
@@ -1,33 +1,33 @@ @@ -1,33 +1,33 @@
1# $NetBSD: Makefile,v 1.6 2011/02/04 00:19:52 rmind Exp $ 1# $NetBSD: Makefile,v 1.7 2012/09/15 17:46:25 plunky Exp $
2# $OpenBSD: Makefile,v 1.3 2006/11/26 11:31:13 deraadt Exp $ 2# $OpenBSD: Makefile,v 1.3 2006/11/26 11:31:13 deraadt Exp $
3 3
4PROG= ftp-proxy 4PROG= ftp-proxy
5SRCS= ftp-proxy.c filter.c 5SRCS= ftp-proxy.c filter.c
6MAN= ftp-proxy.8 6MAN= ftp-proxy.8
7 7
8CFLAGS+= -I${.CURDIR} 8CFLAGS+= -I${.CURDIR}
9LDADD+= -levent 9LDADD+= -levent
10DPADD+= ${LIBEVENT} 10DPADD+= ${LIBEVENT}
11 11
12CPPFLAGS+=-I${NETBSDSRCDIR}/sys 12CPPFLAGS+=-I${NETBSDSRCDIR}/sys
13 13
14.include <bsd.own.mk> 14.include <bsd.own.mk>
15 15
16# NPF support 16# NPF support
17.if (${MKNPF} != "no") 17.if (${MKNPF} != "no")
18SRCS+= npf.c 18SRCS+= npf.c
19CPPFLAGS+= -DWITH_NPF 19CPPFLAGS+= -DWITH_NPF
20LDADD+= -lnpf -lprop 20LDADD+= -lnpf -lprop
21.endif 21.endif
22 22
23# IP Filter support 23# IP Filter support
24.if (${MKIPFILTER} != "no") 24.if (${MKIPFILTER} != "no")
25SRCS+= ipf.c 25SRCS+= ipf.c
26CPPFLAGS+=-I${NETBSDSRCDIR}/sys/dist/ipf -DWITH_IPF 26CPPFLAGS+=-DWITH_IPF
27.endif 27.endif
28 28
29BINDIR= /usr/sbin 29BINDIR= /usr/sbin
30 30
31.include <bsd.prog.mk> 31.include <bsd.prog.mk>
32 32
33.PATH: ${NETBSDSRCDIR}/dist/pf/usr.sbin/ftp-proxy 33.PATH: ${NETBSDSRCDIR}/dist/pf/usr.sbin/ftp-proxy