diff -uNr ppp-2.4.2.org/pppd/Makefile.linux ppp-2.4.2/pppd/Makefile.linux --- ppp-2.4.2.org/pppd/Makefile.linux 2003-11-27 22:55:19.000000000 +0100 +++ ppp-2.4.2/pppd/Makefile.linux 2005-03-01 21:19:06.881724768 +0100 @@ -47,7 +47,7 @@ # 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. -FILTER=y +#FILTER=y # Uncomment the next line to enable multilink PPP (enabled by default) # Linux distributions: Please leave multilink ENABLED in your builds diff -uNr ppp-2.4.2.org/pppd/plugins/Makefile.linux ppp-2.4.2/pppd/plugins/Makefile.linux --- ppp-2.4.2.org/pppd/plugins/Makefile.linux 2004-01-13 04:56:24.000000000 +0100 +++ ppp-2.4.2/pppd/plugins/Makefile.linux 2005-03-01 21:19:26.237782200 +0100 @@ -1,4 +1,4 @@ -CC = gcc +#CC = gcc COPTS = -O2 -g CFLAGS = $(COPTS) -I.. -I../../include -fPIC LDFLAGS = -shared diff -uNr ppp-2.4.2.org/pppd/plugins/rp-pppoe/Makefile.linux ppp-2.4.2/pppd/plugins/rp-pppoe/Makefile.linux --- ppp-2.4.2.org/pppd/plugins/rp-pppoe/Makefile.linux 2004-01-13 04:57:55.000000000 +0100 +++ ppp-2.4.2/pppd/plugins/rp-pppoe/Makefile.linux 2005-03-01 21:20:26.099681808 +0100 @@ -21,7 +21,7 @@ all: rp-pppoe.so rp-pppoe.so: libplugin.a plugin.o - gcc -o rp-pppoe.so -shared plugin.o libplugin.a + $(CC) -o rp-pppoe.so -shared plugin.o libplugin.a install: all $(INSTALL) -d -m 755 $(LIBDIR) @@ -31,20 +31,20 @@ rm -f *.o *.so plugin.o: plugin.c - gcc '-DRP_VERSION="$(VERSION)"' $(CFLAGS) -I../../.. -c -o plugin.o -fPIC plugin.c + $(CC) '-DRP_VERSION="$(VERSION)"' $(CFLAGS) -I../../.. -c -o plugin.o -fPIC plugin.c libplugin.a: discovery.o if.o common.o debug.o - ar -rc $@ $^ + $(AR) -rc $@ $^ discovery.o: discovery.c - gcc $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o discovery.o -fPIC discovery.c + $(CC) $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o discovery.o -fPIC discovery.c if.o: if.c - gcc $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o if.o -fPIC if.c + $(CC) $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o if.o -fPIC if.c debug.o: debug.c - gcc $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o debug.o -fPIC debug.c + $(CC) $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o debug.o -fPIC debug.c common.o: common.c - gcc $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o common.o -fPIC common.c + $(CC) $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o common.o -fPIC common.c