X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2FMakefile.linux;h=aaf5c31322cf36277103bbc1fbf8644334bf96aa;hb=0f9a7931d88adb8df9d962997c7cd92969f1d80d;hp=85113d070c92a36e6540df0deeb9dcfc77597ca5;hpb=71d3de90eae52087b405e962ca650b71cec79c67;p=ppp.git diff --git a/pppd/Makefile.linux b/pppd/Makefile.linux index 85113d0..aaf5c31 100644 --- a/pppd/Makefile.linux +++ b/pppd/Makefile.linux @@ -1,12 +1,13 @@ # # pppd makefile for Linux -# $Id: Makefile.linux,v 1.59 2003/06/11 23:56:26 paulus Exp $ +# $Id: Makefile.linux,v 1.65 2004/11/01 03:49:20 paulus Exp $ # # Default installation locations -BINDIR = $(DESTDIR)/usr/sbin -MANDIR = $(DESTDIR)/usr/man -INCDIR = $(DESTDIR)/usr/include +DESTDIR = @DESTDIR@ +BINDIR = $(DESTDIR)/sbin +MANDIR = $(DESTDIR)/share/man/man8 +INCDIR = $(DESTDIR)/include TARGETS = pppd @@ -46,9 +47,8 @@ MPPE=y # 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 +# and that the kernel driver support PPP packet filtering. +FILTER=y # Uncomment the next line to enable multilink PPP (enabled by default) # Linux distributions: Please leave multilink ENABLED in your builds @@ -171,8 +171,10 @@ LIBS += -ldl endif ifdef FILTER +ifneq ($(wildcard /usr/include/pcap-bpf.h),) LIBS += -lpcap -CFLAGS += -DPPP_FILTER -I/usr/include/pcap +CFLAGS += -DPPP_FILTER +endif endif ifdef HAVE_INET6 @@ -193,7 +195,7 @@ ifdef MAXOCTETS CFLAGS += -DMAXOCTETS endif -INSTALL= install -o root +INSTALL= install all: $(TARGETS) @@ -203,7 +205,7 @@ install: pppd $(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 + $(INSTALL) -c -m 444 pppd.8 $(MANDIR) pppd: $(PPPDOBJS) $(CC) $(CFLAGS) $(LDFLAGS) -o pppd $(PPPDOBJS) $(LIBS)