X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2FMakefile.linux;h=64218a49f32af15c72161946870677de5ecfd306;hp=1a0662c1959e058b94f97edb64e89cb4f333d785;hb=dbfeebc9adcf76a50c1d4e9035d5d481914edb43;hpb=0b3acd3a1122d542e2994d7791cc9127e91778f1 diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index 1a0662c..64218a4 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -1,6 +1,6 @@ # # pppd makefile for Linux -# $Id: Makefile.linux,v 1.37 2000/04/04 07:06:48 paulus Exp $ +# $Id: Makefile.linux,v 1.42 2001/05/23 03:39:50 paulus Exp $ # # Default installation locations @@ -9,18 +9,18 @@ MANDIR = /usr/man PPPDSRCS = main.c magic.c fsm.c lcp.c ipcp.c upap.c chap.c md5.c ccp.c \ ipxcp.c auth.c options.c sys-linux.c md4.c chap_ms.c cbcp.c \ - demand.c utils.c multilink.c tdb.c + demand.c utils.c multilink.c tdb.c tty.c HEADERS = callout.h pathnames.h patchlevel.h chap.h md5.h chap_ms.h md4.h \ ipxcp.h cbcp.h tdb.h MANPAGES = pppd.8 PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap.o md5.o ccp.o \ auth.o options.o demand.o utils.o sys-linux.o ipxcp.o multilink.o \ - tdb.o + tdb.o tty.o all: pppd # -# include dependancies if present and backup if as a header file +# include dependencies if present ifeq (.depend,$(wildcard .depend)) include .depend endif @@ -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)