X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2FMakefile.linux;h=a7ff34f7349544af56de3bf09dcba168a1c3c816;hp=b642005bad899da912fdace6911ece0539adc73a;hb=c65dfbde7e6096272ffacd1c69f444b36a4b707a;hpb=52a17b6d41d64d0502a73e5b4224546360581b49 diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index b642005..a7ff34f 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -1,6 +1,6 @@ # # pppd makefile for Linux -# $Id: Makefile.linux,v 1.38 2000/06/30 04:54:20 paulus Exp $ +# $Id: Makefile.linux,v 1.39 2000/08/01 01:38:29 paulus Exp $ # # Default installation locations @@ -42,6 +42,9 @@ ifneq ($(wildcard /usr/lib/libcrypt.*),) HAVE_CRYPT_H=y endif +# Uncomment the next line to include support for PPP packet filtering. +# This requires that the libpcap library and headers be installed. +FILTER=y HAS_SHADOW=y #USE_PAM=y @@ -94,6 +97,11 @@ LDFLAGS += -Wl,-E LIBS += -ldl endif +ifdef FILTER +LIBS += -lpcap +CFLAGS += -DPPP_FILTER -I/usr/include/pcap +endif + ifdef HAVE_INET6 PPPDSRCS += ipv6cp.c eui64.c HEADERS += ipv6cp.h eui64.h