From 278445ba355938fdabc0918d19bae475e069fdec Mon Sep 17 00:00:00 2001 From: Max Laier Date: Sat, 28 Feb 2004 21:50:50 +0000 Subject: Add skeleton build dirs for pf userland: libexec/ftp-proxy - ftp proxy for pf sbin/pfctl - equivalent to sbin/ipf sbin/pflogd - deamon logging packets via if_pflog in pcap format usr.sbin/authpf - authentification shell to modify pf rulesets Bring along some altq headers used to satisfy pfctl/authpf compile. This helps to keep the diff down and will make it easy to have a altq-patchset use the full powers of pf. Also make sure that the pf headers are installed. This does not link anything to the build. There will be a NO_PF switch for make.conf once pf userland is linked. Approved by: bms(mentor) --- include/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include') diff --git a/include/Makefile b/include/Makefile index c9168b14e671..7072671d42bb 100644 --- a/include/Makefile +++ b/include/Makefile @@ -113,6 +113,9 @@ copies: cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/netinet + cd ${.CURDIR}/../sys/contrib/pf/net; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ + ${DESTDIR}${INCLUDEDIR}/net cd ${.CURDIR}/../sys/opencrypto; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/crypto @@ -150,6 +153,11 @@ symlinks: ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \ ${DESTDIR}${INCLUDEDIR}/netinet; \ done + cd ${.CURDIR}/../sys/contrib/pf/net; \ + for h in *.h; do \ + ln -fs ../../../sys/contrib/pf/net/$$h \ + ${DESTDIR}${INCLUDEDIR}/net; \ + done cd ${.CURDIR}/../sys/opencrypto; \ for h in *.h; do \ ln -fs ../../../sys/opencrypto/$$h \ -- cgit v1.3