diff options
author | peter <peter@FreeBSD.org> | 1997-10-10 11:59:02 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-10-10 11:59:02 +0000 |
commit | 7fdb874d2ef5d2fb35ef6ba150b9e371c31e4fd0 (patch) | |
tree | 7c72a34b126ac7e85cfa29653a62ba8079acd62f /usr.sbin/pppd | |
parent | 7beb53731f8a3b8c54b56e8f9864ba6a7e069df8 (diff) | |
download | FreeBSD-src-7fdb874d2ef5d2fb35ef6ba150b9e371c31e4fd0.zip FreeBSD-src-7fdb874d2ef5d2fb35ef6ba150b9e371c31e4fd0.tar.gz |
Give PPP_FILTER a whirl.
Diffstat (limited to 'usr.sbin/pppd')
-rw-r--r-- | usr.sbin/pppd/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/usr.sbin/pppd/Makefile b/usr.sbin/pppd/Makefile index 1ba8251..7d58b9f 100644 --- a/usr.sbin/pppd/Makefile +++ b/usr.sbin/pppd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.8 1997/08/22 15:50:09 peter Exp $ +# $Id: Makefile,v 1.9 1997/08/22 15:57:37 peter Exp $ CFLAGS+= -DHAVE_PATHS_H @@ -12,6 +12,9 @@ BINOWN= root # as per handbook policies section MAINTAINER= peter@freebsd.org +LDADD= -lcrypt -lutil -lmd +DPADD= ${LIBCRYPT} ${LIBUTIL} ${LIBMD} + # Support SPX/IPX - not quite ready #CFLAGS+=-DIPX_CHANGE #SRCS+= ipxcp.c @@ -20,7 +23,9 @@ MAINTAINER= peter@freebsd.org CFLAGS+=-DCBCP_SUPPORT SRCS+= cbcp.c -LDADD= -lcrypt -lutil -lmd -DPADD= ${LIBCRYPT} ${LIBUTIL} ${LIBMD} +# Filter support +CFLAGS+=-DPPP_FILTER +LDADD+= -lpcap +DPADD+= ${LIBPCAP} .include <bsd.prog.mk> |