X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2FMakefile.linux;h=3061346015e231960c15e51b27d82662192d53eb;hb=4cc66b91de920c8572a11511be24a8a6949cb5b8;hp=b642005bad899da912fdace6911ece0539adc73a;hpb=52a17b6d41d64d0502a73e5b4224546360581b49;p=ppp.git diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index b642005..3061346 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.41 2001/03/08 05:00:35 paulus Exp $ # # Default installation locations @@ -42,6 +42,11 @@ 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 +# and that the kernel driver support PPP packet filtering, which it +# doesn't yet. +#FILTER=y HAS_SHADOW=y #USE_PAM=y @@ -94,6 +99,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 @@ -106,9 +116,9 @@ INSTALL= install -o root install: pppd mkdir -p $(BINDIR) $(MANDIR) - $(INSTALL) -s -c -m 4550 pppd $(BINDIR)/pppd - if ! chgrp pppusers $(BINDIR)/pppd 2>/dev/null; then \ - chmod o+rx $(BINDIR)/pppd; fi + $(INSTALL) -s -c -m 555 pppd $(BINDIR)/pppd + if chgrp pppusers $(BINDIR)/pppd 2>/dev/null; then \ + chmod o-rx,u+s $(BINDIR)/pppd; fi $(INSTALL) -c -m 444 pppd.8 $(MANDIR)/man8 pppd: $(PPPDOBJS)