From 79d2e30daf438acc8ee8e3777be79872a7e04403 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 10 Oct 1997 11:59:02 +0000 Subject: [PATCH] Give PPP_FILTER a whirl. --- usr.sbin/pppd/Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/usr.sbin/pppd/Makefile b/usr.sbin/pppd/Makefile index 1ba8251d7814..7d58b9fcb343 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