fix rp-pppoe compile, upgrade to latest upstream version
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5731 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
fcd7bb7cd6
commit
c4d4f79875
@ -9,12 +9,12 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=rp-pppoe
|
||||
PKG_VERSION:=3.5
|
||||
PKG_VERSION:=3.8
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://roaringpenguin.com/penguin/pppoe/
|
||||
PKG_MD5SUM:=97972f8f8f6a3ab9b7070333a6a29c4b
|
||||
PKG_MD5SUM:=0e32760f498f9cde44081ee6aafc823b
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
@ -51,12 +51,15 @@ define Package/rp-pppoe-sniff
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
$(call Build/Configure/Default,,, src)
|
||||
$(call Build/Configure/Default,, \
|
||||
ac_cv_path_PPPD=/usr/sbin/pppd, \
|
||||
src \
|
||||
)
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR)/src \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
RPM_INSTALL_ROOT="$(PKG_INSTALL_DIR)" \
|
||||
all install
|
||||
endef
|
||||
|
||||
@ -64,10 +67,9 @@ define Package/rp-pppoe-client/install
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/pppoe-client.init $(1)/etc/init.d/pppoe-client
|
||||
$(INSTALL_DIR) $(1)/etc/ppp
|
||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/pppoe.conf $(1)/etc/
|
||||
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/ppp/pppoe.conf $(1)/etc/ppp/
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/pppoe $(1)/usr/sbin/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/adsl-* $(1)/usr/sbin/
|
||||
endef
|
||||
|
||||
define Package/rp-pppoe-relay/install
|
||||
|
12
net/rp-pppoe/patches/100-configure.patch
Normal file
12
net/rp-pppoe/patches/100-configure.patch
Normal file
@ -0,0 +1,12 @@
|
||||
diff -ur pppoe.old/src/configure pppoe.dev/src/configure
|
||||
--- pppoe.old/src/configure 2006-04-02 16:29:42.000000000 +0200
|
||||
+++ pppoe.dev/src/configure 2006-12-08 22:27:13.753685216 +0100
|
||||
@@ -5744,7 +5744,7 @@
|
||||
echo "$as_me:$LINENO: checking packing order of bit fields" >&5
|
||||
echo $ECHO_N "checking packing order of bit fields... $ECHO_C" >&6
|
||||
if test "$cross_compiling" = yes; then
|
||||
- $ECHO "no defaults for cross-compiling"; exit 0
|
||||
+ rpppoe_cv_pack_bitfields="$ac_cv_pack_bitfields"
|
||||
else
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
/* confdefs.h. */
|
@ -1,217 +0,0 @@
|
||||
diff -ruN rp-pppoe-3.5-orig/src/Makefile.in rp-pppoe-3.5-4/src/Makefile.in
|
||||
--- rp-pppoe-3.5-orig/src/Makefile.in 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/src/Makefile.in 2005-03-09 16:37:38.000000000 +0100
|
||||
@@ -62,21 +62,23 @@
|
||||
TARGETS=@TARGETS@
|
||||
PPPOE_SERVER_LIBS=$(LIC_LIBDIR) $(LIC_LIB)
|
||||
|
||||
+LIBS="-lc"
|
||||
+
|
||||
all: $(TARGETS)
|
||||
@echo ""
|
||||
@echo "Type 'make install' as root to install the software."
|
||||
|
||||
pppoe-sniff: pppoe-sniff.o if.o common.o debug.o
|
||||
- @CC@ -o pppoe-sniff pppoe-sniff.o if.o common.o debug.o
|
||||
+ @CC@ $(CFLAGS) -o pppoe-sniff pppoe-sniff.o if.o common.o debug.o $(LIBS)
|
||||
|
||||
pppoe-server: pppoe-server.o if.o debug.o common.o md5.o libevent/libevent.a @PPPOE_SERVER_DEPS@
|
||||
- @CC@ -o pppoe-server @RDYNAMIC@ pppoe-server.o if.o debug.o common.o md5.o $(PPPOE_SERVER_LIBS) -Llibevent -levent
|
||||
+ @CC@ $(CFLAGS) -o pppoe-server @RDYNAMIC@ pppoe-server.o if.o debug.o common.o md5.o $(PPPOE_SERVER_LIBS) -Llibevent -levent $(LIBS)
|
||||
|
||||
pppoe: pppoe.o if.o debug.o common.o ppp.o discovery.o
|
||||
- @CC@ -o pppoe pppoe.o if.o debug.o common.o ppp.o discovery.o
|
||||
+ @CC@ $(CFLAGS) -o pppoe pppoe.o if.o debug.o common.o ppp.o discovery.o $(LIBS)
|
||||
|
||||
pppoe-relay: relay.o if.o debug.o common.o
|
||||
- @CC@ -o pppoe-relay relay.o if.o debug.o common.o
|
||||
+ @CC@ $(CFLAGS) -o pppoe-relay relay.o if.o debug.o common.o $(LIBS)
|
||||
|
||||
pppoe.o: pppoe.c pppoe.h
|
||||
@CC@ $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o pppoe.o pppoe.c
|
||||
@@ -119,7 +121,7 @@
|
||||
@CC@ '-DRP_VERSION="$(VERSION)"' $(CFLAGS) -I$(PPPD_INCDIR) -c -o plugin/plugin.o -fPIC plugin.c
|
||||
|
||||
plugin/libplugin.a: plugin/discovery.o plugin/if.o plugin/common.o plugin/debug.o
|
||||
- ar -rc $@ $^
|
||||
+ $(AR) -rc $@ $^
|
||||
|
||||
plugin/discovery.o: discovery.c
|
||||
@CC@ $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o plugin/discovery.o -fPIC discovery.c
|
||||
@@ -134,78 +136,78 @@
|
||||
@CC@ $(CFLAGS) '-DVERSION="$(VERSION)"' -c -o plugin/common.o -fPIC common.c
|
||||
|
||||
install: all
|
||||
- -mkdir -p $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- $(install) -m 755 -s pppoe $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- $(install) -m 755 -s pppoe-server $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- if test -x licensed-only/pppoe-server-control ; then $(install) -m 755 -s licensed-only/pppoe-server-control $(RPM_INSTALL_ROOT)$(sbindir); fi
|
||||
- if test -x pppoe-relay ; then $(install) -m 755 -s pppoe-relay $(RPM_INSTALL_ROOT)$(sbindir); fi
|
||||
- if test -x pppoe-sniff; then $(install) -m 755 -s pppoe-sniff $(RPM_INSTALL_ROOT)$(sbindir); fi
|
||||
- $(install) -m 755 ../scripts/adsl-connect $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- $(install) -m 755 ../scripts/adsl-start $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- $(install) -m 755 ../scripts/adsl-status $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- $(install) -m 755 ../scripts/adsl-stop $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- $(install) -m 755 ../scripts/adsl-setup $(RPM_INSTALL_ROOT)$(sbindir)
|
||||
- -mkdir -p $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- $(install) -m 644 ../doc/CHANGES $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- $(install) -m 644 ../doc/KERNEL-MODE-PPPOE $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- $(install) -m 644 ../doc/HOW-TO-CONNECT $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- $(install) -m 644 ../doc/LICENSE $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- $(install) -m 644 ../README $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- $(install) -m 644 ../SERVPOET $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- $(install) -m 644 ../configs/pap-secrets $(RPM_INSTALL_ROOT)$(docdir)
|
||||
- -mkdir -p $(RPM_INSTALL_ROOT)$(mandir)/man8
|
||||
+ -mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ $(install) -m 755 pppoe $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ $(install) -m 755 pppoe-server $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ if test -x licensed-only/pppoe-server-control ; then $(install) -m 755 licensed-only/pppoe-server-control $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir); fi
|
||||
+ if test -x pppoe-relay ; then $(install) -m 755 pppoe-relay $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir); fi
|
||||
+ if test -x pppoe-sniff; then $(install) -m 755 pppoe-sniff $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir); fi
|
||||
+ $(install) -m 755 ../scripts/adsl-connect $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ $(install) -m 755 ../scripts/adsl-start $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ $(install) -m 755 ../scripts/adsl-status $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ $(install) -m 755 ../scripts/adsl-stop $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ $(install) -m 755 ../scripts/adsl-setup $(RPM_INSTALL_ROOT)$(DESTDIR)$(sbindir)
|
||||
+ -mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ $(install) -m 644 ../doc/CHANGES $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ $(install) -m 644 ../doc/KERNEL-MODE-PPPOE $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ $(install) -m 644 ../doc/HOW-TO-CONNECT $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ $(install) -m 644 ../doc/LICENSE $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ $(install) -m 644 ../README $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ $(install) -m 644 ../SERVPOET $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ $(install) -m 644 ../configs/pap-secrets $(RPM_INSTALL_ROOT)$(DESTDIR)$(docdir)
|
||||
+ -mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man8
|
||||
for i in $(TARGETS) ; do \
|
||||
if test -f ../man/$$i.8 ; then \
|
||||
- $(install) -m 644 ../man/$$i.8 $(RPM_INSTALL_ROOT)$(mandir)/man8 || exit 1; \
|
||||
+ $(install) -m 644 ../man/$$i.8 $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man8 || exit 1; \
|
||||
fi; \
|
||||
done
|
||||
- $(install) -m 644 ../man/adsl-start.8 $(RPM_INSTALL_ROOT)$(mandir)/man8
|
||||
- $(install) -m 644 ../man/adsl-stop.8 $(RPM_INSTALL_ROOT)$(mandir)/man8
|
||||
- $(install) -m 644 ../man/adsl-status.8 $(RPM_INSTALL_ROOT)$(mandir)/man8
|
||||
- $(install) -m 644 ../man/adsl-connect.8 $(RPM_INSTALL_ROOT)$(mandir)/man8
|
||||
- $(install) -m 644 ../man/adsl-setup.8 $(RPM_INSTALL_ROOT)$(mandir)/man8
|
||||
- -mkdir -p $(RPM_INSTALL_ROOT)$(mandir)/man5
|
||||
- $(install) -m 644 ../man/pppoe.conf.5 $(RPM_INSTALL_ROOT)$(mandir)/man5
|
||||
- -mkdir -p $(RPM_INSTALL_ROOT)/etc/ppp
|
||||
- -mkdir -p $(RPM_INSTALL_ROOT)$(PLUGIN_DIR)
|
||||
- -echo "# Directory created by rp-pppoe for kernel-mode plugin" > $(RPM_INSTALL_ROOT)$(PLUGIN_DIR)/README
|
||||
- @if test -r rp-pppoe.so; then $(install) -m 755 rp-pppoe.so $(RPM_INSTALL_ROOT)$(PLUGIN_DIR); fi
|
||||
- @for i in pppoe.conf firewall-standalone firewall-masq ; do \
|
||||
- if [ ! -f $(RPM_INSTALL_ROOT)/etc/ppp/$$i ] ; then \
|
||||
- $(install) -m 644 ../configs/$$i $(RPM_INSTALL_ROOT)/etc/ppp ; \
|
||||
+ $(install) -m 644 ../man/adsl-start.8 $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man8
|
||||
+ $(install) -m 644 ../man/adsl-stop.8 $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man8
|
||||
+ $(install) -m 644 ../man/adsl-status.8 $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man8
|
||||
+ $(install) -m 644 ../man/adsl-connect.8 $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man8
|
||||
+ $(install) -m 644 ../man/adsl-setup.8 $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man8
|
||||
+ -mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man5
|
||||
+ $(install) -m 644 ../man/pppoe.conf.5 $(RPM_INSTALL_ROOT)$(DESTDIR)$(mandir)/man5
|
||||
+ -mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/ppp
|
||||
+ -mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)$(PLUGIN_DIR)
|
||||
+ -echo "# Directory created by rp-pppoe for kernel-mode plugin" > $(RPM_INSTALL_ROOT)$(DESTDIR)$(PLUGIN_DIR)/README
|
||||
+ @if test -r rp-pppoe.so; then $(install) -m 755 rp-pppoe.so $(RPM_INSTALL_ROOT)$(DESTDIR)$(PLUGIN_DIR); fi
|
||||
+ @for i in pppoe.conf; do \
|
||||
+ if [ ! -f $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/$$i ] ; then \
|
||||
+ $(install) -m 644 ../configs/$$i $(RPM_INSTALL_ROOT)$(DESTDIR)/etc ; \
|
||||
else \
|
||||
- echo "NOT overwriting existing $(RPM_INSTALL_ROOT)/etc/ppp/$$i" ;\
|
||||
- $(install) -m 644 ../configs/$$i $(RPM_INSTALL_ROOT)/etc/ppp/$$i-$(VERSION) ;\
|
||||
+ echo "NOT overwriting existing $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/$$i" ;\
|
||||
+ $(install) -m 644 ../configs/$$i $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/$$i-$(VERSION) ;\
|
||||
fi ;\
|
||||
done
|
||||
- @if [ ! -f $(RPM_INSTALL_ROOT)$(PPPOESERVER_PPPD_OPTIONS) ] ; then \
|
||||
- $(install) -m 644 ../configs/pppoe-server-options $(RPM_INSTALL_ROOT)$(PPPOESERVER_PPPD_OPTIONS) ; \
|
||||
+ @if [ ! -f $(RPM_INSTALL_ROOT)$(DESTDIR)$(PPPOESERVER_PPPD_OPTIONS) ] ; then \
|
||||
+ $(install) -m 644 ../configs/pppoe-server-options $(RPM_INSTALL_ROOT)$(DESTDIR)$(PPPOESERVER_PPPD_OPTIONS) ; \
|
||||
else \
|
||||
- echo "NOT overwriting existing $(RPM_INSTALL_ROOT)$(PPPOESERVER_PPPD_OPTIONS)"; \
|
||||
- $(install) -m 644 ../configs/pppoe-server-options $(RPM_INSTALL_ROOT)$(PPPOESERVER_PPPD_OPTIONS)-example ; \
|
||||
+ echo "NOT overwriting existing $(RPM_INSTALL_ROOT)$(DESTDIR)$(PPPOESERVER_PPPD_OPTIONS)"; \
|
||||
+ $(install) -m 644 ../configs/pppoe-server-options $(RPM_INSTALL_ROOT)$(DESTDIR)$(PPPOESERVER_PPPD_OPTIONS)-example ; \
|
||||
fi
|
||||
@if [ -f /etc/redhat-release ] ; then \
|
||||
- echo "Looks like a Red Hat system; installing $(RPM_INSTALL_ROOT)/etc/rc.d/init.d/adsl" ; \
|
||||
- mkdir -p $(RPM_INSTALL_ROOT)/etc/rc.d/init.d ;\
|
||||
- $(install) -m 755 ../scripts/adsl-init $(RPM_INSTALL_ROOT)/etc/rc.d/init.d/adsl ; \
|
||||
+ echo "Looks like a Red Hat system; installing $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d/adsl" ; \
|
||||
+ mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d ;\
|
||||
+ $(install) -m 755 ../scripts/adsl-init $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d/adsl ; \
|
||||
fi
|
||||
@if [ -f /etc/turbolinux-release ] ; then \
|
||||
- echo "Looks like a TurboLinux system; installing $(RPM_INSTALL_ROOT)/etc/rc.d/init.d/adsl" ; \
|
||||
- mkdir -p $(RPM_INSTALL_ROOT)/etc/rc.d/init.d ;\
|
||||
- $(install) -m 755 ../scripts/adsl-init-turbolinux $(RPM_INSTALL_ROOT)/etc/rc.d/init.d/adsl ; \
|
||||
+ echo "Looks like a TurboLinux system; installing $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d/adsl" ; \
|
||||
+ mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d ;\
|
||||
+ $(install) -m 755 ../scripts/adsl-init-turbolinux $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d/adsl ; \
|
||||
fi
|
||||
@if [ -f /etc/SuSE-release ] ; then \
|
||||
- echo "Looks like a SuSE Linux system; installing $(RPM_INSTALL_ROOT)/etc/rc.d/init.d/adsl" ; \
|
||||
- mkdir -p $(RPM_INSTALL_ROOT)/etc/rc.d/init.d ;\
|
||||
- $(install) -m 755 ../scripts/adsl-init-suse $(RPM_INSTALL_ROOT)/etc/rc.d/init.d/adsl ; \
|
||||
+ echo "Looks like a SuSE Linux system; installing $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d/adsl" ; \
|
||||
+ mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d ;\
|
||||
+ $(install) -m 755 ../scripts/adsl-init-suse $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/rc.d/init.d/adsl ; \
|
||||
fi
|
||||
|
||||
# L2TP
|
||||
@if [ -f l2tp/handlers/sync-pppd.so ] ; then \
|
||||
- mkdir -p $(RPM_INSTALL_ROOT)/usr/lib/l2tp/plugins ; \
|
||||
- $(install) -m 755 l2tp/handlers/sync-pppd.so $(RPM_INSTALL_ROOT)/usr/lib/l2tp/plugins ; \
|
||||
- mkdir -p $(RPM_INSTALL_ROOT)/etc/l2tp ; \
|
||||
- $(install) -m 600 l2tp/l2tp.conf $(RPM_INSTALL_ROOT)/etc/l2tp/l2tp.conf.example ; \
|
||||
+ mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)/usr/lib/l2tp/plugins ; \
|
||||
+ $(install) -m 755 l2tp/handlers/sync-pppd.so $(RPM_INSTALL_ROOT)$(DESTDIR)/usr/lib/l2tp/plugins ; \
|
||||
+ mkdir -p $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/l2tp ; \
|
||||
+ $(install) -m 600 l2tp/l2tp.conf $(RPM_INSTALL_ROOT)$(DESTDIR)/etc/l2tp/l2tp.conf.example ; \
|
||||
fi
|
||||
@echo ""
|
||||
@echo "Type 'adsl-setup' to configure the software."
|
||||
@@ -288,7 +290,7 @@
|
||||
cd .. && rpm -ba servpoet.spec
|
||||
|
||||
clean:
|
||||
- rm -f *.o pppoe pppoe-sniff pppoe-server core rp-pppoe.so plugin/*.o plugin/libplugin.a *~
|
||||
+ rm -f *.o pppoe pppoe-relay pppoe-sniff pppoe-server core rp-pppoe.so plugin/*.o plugin/libplugin.a *~
|
||||
test -f licensed-only/Makefile && $(MAKE) -C licensed-only clean || true
|
||||
test -f libevent/Makefile && $(MAKE) -C libevent clean || true
|
||||
test -f l2tp/Makefile && $(MAKE) -C l2tp clean || true
|
||||
diff -ruN rp-pppoe-3.5-orig/src/libevent/Makefile.in rp-pppoe-3.5-4/src/libevent/Makefile.in
|
||||
--- rp-pppoe-3.5-orig/src/libevent/Makefile.in 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/src/libevent/Makefile.in 2005-03-09 16:37:38.000000000 +0100
|
||||
@@ -18,24 +18,24 @@
|
||||
|
||||
libevent.a: $(OBJS)
|
||||
rm -f libevent.a
|
||||
- ar -cq libevent.a $(OBJS)
|
||||
+ $(AR) r libevent.a $(OBJS)
|
||||
@RANLIB@ libevent.a
|
||||
|
||||
event.o: event.c $(HDRS)
|
||||
- gcc $(CFLAGS) -c -o event.o event.c
|
||||
+ @CC@ $(CFLAGS) -c -o event.o event.c
|
||||
|
||||
hash.o: hash.c $(HDRS)
|
||||
- gcc $(CFLAGS) -c -o hash.o hash.c
|
||||
+ @CC@ $(CFLAGS) -c -o hash.o hash.c
|
||||
|
||||
event_sig.o: event_sig.c $(HDRS)
|
||||
- gcc $(CFLAGS) -c -o event_sig.o event_sig.c
|
||||
+ @CC@ $(CFLAGS) -c -o event_sig.o event_sig.c
|
||||
|
||||
event_tcp.o: event_tcp.c $(HDRS)
|
||||
- gcc $(CFLAGS) -c -o event_tcp.o event_tcp.c
|
||||
+ @CC@ $(CFLAGS) -c -o event_tcp.o event_tcp.c
|
||||
|
||||
clean: FORCE
|
||||
rm -f *.a *.o *~
|
||||
|
||||
FORCE:
|
||||
|
||||
-.phony: FORCE
|
||||
\ No newline at end of file
|
||||
+.phony: FORCE
|
@ -1,241 +0,0 @@
|
||||
diff -ruN rp-pppoe-3.5-orig/src/configure rp-pppoe-3.5-4/src/configure
|
||||
--- rp-pppoe-3.5-orig/src/configure 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/src/configure 2005-03-09 16:37:38.000000000 +0100
|
||||
@@ -1707,6 +1707,7 @@
|
||||
#line 1708 "configure"
|
||||
#include "confdefs.h"
|
||||
#include <stdio.h>
|
||||
+#include <sys/types.h>
|
||||
main()
|
||||
{
|
||||
FILE *f=fopen("conftestval", "w");
|
||||
@@ -1715,7 +1716,7 @@
|
||||
exit(0);
|
||||
}
|
||||
EOF
|
||||
-if { (eval echo configure:1719: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
+if { (eval echo configure:1720: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
then
|
||||
ac_cv_sizeof_unsigned_short=`cat conftestval`
|
||||
else
|
||||
@@ -1735,7 +1736,7 @@
|
||||
|
||||
|
||||
echo $ac_n "checking size of unsigned int""... $ac_c" 1>&6
|
||||
-echo "configure:1739: checking size of unsigned int" >&5
|
||||
+echo "configure:1740: checking size of unsigned int" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_sizeof_unsigned_int'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@@ -1743,9 +1744,10 @@
|
||||
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||
else
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
-#line 1747 "configure"
|
||||
+#line 1748 "configure"
|
||||
#include "confdefs.h"
|
||||
#include <stdio.h>
|
||||
+#include <sys/types.h>
|
||||
main()
|
||||
{
|
||||
FILE *f=fopen("conftestval", "w");
|
||||
@@ -1754,7 +1756,7 @@
|
||||
exit(0);
|
||||
}
|
||||
EOF
|
||||
-if { (eval echo configure:1758: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
+if { (eval echo configure:1760: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
then
|
||||
ac_cv_sizeof_unsigned_int=`cat conftestval`
|
||||
else
|
||||
@@ -1774,7 +1776,7 @@
|
||||
|
||||
|
||||
echo $ac_n "checking size of unsigned long""... $ac_c" 1>&6
|
||||
-echo "configure:1778: checking size of unsigned long" >&5
|
||||
+echo "configure:1780: checking size of unsigned long" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_sizeof_unsigned_long'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@@ -1782,9 +1784,10 @@
|
||||
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||
else
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
-#line 1786 "configure"
|
||||
+#line 1788 "configure"
|
||||
#include "confdefs.h"
|
||||
#include <stdio.h>
|
||||
+#include <sys/types.h>
|
||||
main()
|
||||
{
|
||||
FILE *f=fopen("conftestval", "w");
|
||||
@@ -1793,7 +1796,7 @@
|
||||
exit(0);
|
||||
}
|
||||
EOF
|
||||
-if { (eval echo configure:1797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
+if { (eval echo configure:1800: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
then
|
||||
ac_cv_sizeof_unsigned_long=`cat conftestval`
|
||||
else
|
||||
@@ -1816,7 +1819,7 @@
|
||||
# Extract the first word of "pppd", so it can be a program name with args.
|
||||
set dummy pppd; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
-echo "configure:1820: checking for $ac_word" >&5
|
||||
+echo "configure:1823: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_path_PPPD'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@@ -1853,7 +1856,7 @@
|
||||
# Extract the first word of "setsid", so it can be a program name with args.
|
||||
set dummy setsid; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
-echo "configure:1857: checking for $ac_word" >&5
|
||||
+echo "configure:1860: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_path_SETSID'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@@ -1890,7 +1893,7 @@
|
||||
# Extract the first word of "id", so it can be a program name with args.
|
||||
set dummy id; ac_word=$2
|
||||
echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
|
||||
-echo "configure:1894: checking for $ac_word" >&5
|
||||
+echo "configure:1897: checking for $ac_word" >&5
|
||||
if eval "test \"`echo '$''{'ac_cv_path_ID'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
else
|
||||
@@ -1925,14 +1928,11 @@
|
||||
|
||||
|
||||
echo $ac_n "checking for Linux 2.4.X kernel-mode PPPoE support""... $ac_c" 1>&6
|
||||
-echo "configure:1929: checking for Linux 2.4.X kernel-mode PPPoE support" >&5
|
||||
-if test "`uname -s`" = "Linux" ; then
|
||||
-modprobe ppp_generic > /dev/null 2>&1
|
||||
-modprobe ppp_async > /dev/null 2>&1
|
||||
-modprobe n_hdlc > /dev/null 2>&1
|
||||
-modprobe ppp_synctty > /dev/null 2>&1
|
||||
-modprobe pppoe > /dev/null 2>&1
|
||||
-if test "$cross_compiling" = yes; then
|
||||
+echo "configure:1932: checking for Linux 2.4.X kernel-mode PPPoE support" >&5
|
||||
+if eval "test \"`echo '$''{'ac_cv_linux_kernel_pppoe'+set}'`\" = set"; then
|
||||
+ echo $ac_n "(cached) $ac_c" 1>&6
|
||||
+else
|
||||
+ if test "$cross_compiling" = yes; then
|
||||
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||
else
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
@@ -1960,10 +1960,10 @@
|
||||
rm -fr conftest*
|
||||
fi
|
||||
|
||||
-else
|
||||
- ac_cv_linux_kernel_pppoe=no
|
||||
fi
|
||||
|
||||
+echo "$ac_t""$ac_cv_linux_kernel_pppoe" 1>&6
|
||||
+
|
||||
$ECHO $ac_cv_linux_kernel_pppoe
|
||||
if test "$ac_cv_linux_kernel_pppoe" != yes ; then
|
||||
if test "$LINUX_KERNELMODE_PLUGIN" = rp-pppoe.so; then
|
||||
@@ -2018,11 +2018,14 @@
|
||||
|
||||
echo $ac_n "checking packing order of bit fields""... $ac_c" 1>&6
|
||||
echo "configure:2021: checking packing order of bit fields" >&5
|
||||
-if test "$cross_compiling" = yes; then
|
||||
+if eval "test \"`echo '$''{'ac_cv_pack_bitfields_reversed'+set}'`\" = set"; then
|
||||
+ echo $ac_n "(cached) $ac_c" 1>&6
|
||||
+else
|
||||
+ if test "$cross_compiling" = yes; then
|
||||
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
|
||||
else
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
-#line 2026 "configure"
|
||||
+#line 2029 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
union foo {
|
||||
@@ -2048,20 +2051,23 @@
|
||||
}
|
||||
}
|
||||
EOF
|
||||
-if { (eval echo configure:2052: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
+if { (eval echo configure:2055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
|
||||
then
|
||||
- PACK=normal
|
||||
+ ac_cv_pack_bitfields_reversed=no
|
||||
else
|
||||
echo "configure: failed program was:" >&5
|
||||
cat conftest.$ac_ext >&5
|
||||
rm -fr conftest*
|
||||
- PACK=rev
|
||||
+ ac_cv_pack_bitfields_reversed=yes
|
||||
fi
|
||||
rm -fr conftest*
|
||||
fi
|
||||
|
||||
+fi
|
||||
+
|
||||
+echo "$ac_t""$ac_cv_pack_bitfields_reversed" 1>&6
|
||||
|
||||
-if test "$PACK" = "rev" ; then
|
||||
+if test "$ac_cv_pack_bitfields_reversed" = "yes" ; then
|
||||
$ECHO "reversed"
|
||||
cat >> confdefs.h <<\EOF
|
||||
#define PACK_BITFIELDS_REVERSED 1
|
||||
diff -ruN rp-pppoe-3.5-orig/src/configure.in rp-pppoe-3.5-4/src/configure.in
|
||||
--- rp-pppoe-3.5-orig/src/configure.in 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/src/configure.in 2005-03-09 16:37:38.000000000 +0100
|
||||
@@ -130,15 +130,8 @@
|
||||
AC_PATH_PROG(ID, id, "", /usr/xpg4/bin:$PATH)
|
||||
|
||||
dnl Check for Linux-specific kernel support for PPPoE
|
||||
-AC_MSG_CHECKING(for Linux 2.4.X kernel-mode PPPoE support)
|
||||
-if test "`uname -s`" = "Linux" ; then
|
||||
-dnl Do a bunch of modprobes. Can't hurt; might help.
|
||||
-modprobe ppp_generic > /dev/null 2>&1
|
||||
-modprobe ppp_async > /dev/null 2>&1
|
||||
-modprobe n_hdlc > /dev/null 2>&1
|
||||
-modprobe ppp_synctty > /dev/null 2>&1
|
||||
-modprobe pppoe > /dev/null 2>&1
|
||||
-AC_TRY_RUN([#include <sys/socket.h>
|
||||
+AC_CACHE_CHECK([for Linux 2.4.X kernel-mode PPPoE support], ac_cv_linux_kernel_pppoe,
|
||||
+[AC_TRY_RUN([#include <sys/socket.h>
|
||||
#include <net/ethernet.h>
|
||||
#include <linux/if.h>
|
||||
#include <linux/if_pppox.h>
|
||||
@@ -146,10 +139,7 @@
|
||||
{
|
||||
if (socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OE) >= 0) return 0; else return 1;
|
||||
}
|
||||
-], ac_cv_linux_kernel_pppoe=yes, ac_cv_linux_kernel_pppoe=no)
|
||||
-else
|
||||
- ac_cv_linux_kernel_pppoe=no
|
||||
-fi
|
||||
+], ac_cv_linux_kernel_pppoe=yes, ac_cv_linux_kernel_pppoe=no)])
|
||||
|
||||
$ECHO $ac_cv_linux_kernel_pppoe
|
||||
if test "$ac_cv_linux_kernel_pppoe" != yes ; then
|
||||
@@ -208,8 +198,8 @@
|
||||
esac
|
||||
|
||||
dnl Figure out packing order of structures
|
||||
-AC_MSG_CHECKING(packing order of bit fields)
|
||||
-AC_TRY_RUN([
|
||||
+AC_CACHE_CHECK([packing order of bit fields], ac_cv_pack_bitfields_reversed,
|
||||
+[AC_TRY_RUN([
|
||||
union foo {
|
||||
struct bar {
|
||||
unsigned int ver:4;
|
||||
@@ -231,9 +221,9 @@
|
||||
} else {
|
||||
return 2;
|
||||
}
|
||||
-}], PACK=normal, PACK=rev)
|
||||
+}], ac_cv_pack_bitfields_reversed=no, ac_cv_pack_bitfields_reversed=yes)])
|
||||
|
||||
-if test "$PACK" = "rev" ; then
|
||||
+if test "$ac_cv_pack_bitfields_reversed" = "yes" ; then
|
||||
$ECHO "reversed"
|
||||
AC_DEFINE(PACK_BITFIELDS_REVERSED)
|
||||
else
|
@ -1,227 +0,0 @@
|
||||
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-connect.in rp-pppoe-3.5-4/scripts/adsl-connect.in
|
||||
--- rp-pppoe-3.5-orig/scripts/adsl-connect.in 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/scripts/adsl-connect.in 2005-03-10 01:01:15.000000000 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
# Usage: adsl-connect [config_file]
|
||||
# adsl-connect interface user [config_file]
|
||||
# Second form overrides USER and ETH from config file.
|
||||
-# If config_file is omitted, defaults to /etc//ppp/pppoe.conf
|
||||
+# If config_file is omitted, defaults to /etc/pppoe.conf
|
||||
#
|
||||
#***********************************************************************
|
||||
|
||||
@@ -30,25 +30,22 @@
|
||||
# Paths to programs
|
||||
IFCONFIG=/sbin/ifconfig
|
||||
PPPD=@PPPD@
|
||||
-SETSID=@SETSID@
|
||||
+SETSID=
|
||||
PPPOE=@sbindir@/pppoe
|
||||
LOGGER="/usr/bin/logger -t `basename $0`"
|
||||
|
||||
+#MODPROBE=modprobe
|
||||
+MODPROBE=insmod
|
||||
+
|
||||
# Set to "C" locale so we can parse messages from commands
|
||||
LANG=C
|
||||
export LANG
|
||||
|
||||
-# Must be root
|
||||
-if test "`@ID@ -u`" != 0 ; then
|
||||
- echo "$0: You must be root to run this script" >& 2
|
||||
- exit 1
|
||||
-fi
|
||||
-
|
||||
if test "$SETSID" != "" -a ! -x "$SETSID"; then
|
||||
SETSID=""
|
||||
fi
|
||||
|
||||
-CONFIG=/etc//ppp/pppoe.conf
|
||||
+CONFIG=/etc/pppoe.conf
|
||||
USER=""
|
||||
ETH=""
|
||||
|
||||
@@ -117,12 +114,12 @@
|
||||
if test `uname -s` = Linux ; then
|
||||
$IFCONFIG $ETH up mtu 1500
|
||||
# For 2.4 kernels. Will fail on 2.2.x, but who cares?
|
||||
- modprobe ppp_generic > /dev/null 2>&1
|
||||
- modprobe ppp_async > /dev/null 2>&1
|
||||
- modprobe ppp_synctty > /dev/null 2>&1
|
||||
+ $MODPROBE ppp_generic > /dev/null 2>&1
|
||||
+ $MODPROBE ppp_async > /dev/null 2>&1
|
||||
+ $MODPROBE ppp_synctty > /dev/null 2>&1
|
||||
if test -n "$LINUX_PLUGIN" ; then
|
||||
- modprobe pppox > /dev/null 2>&1
|
||||
- modprobe pppoe > /dev/null 2>&1
|
||||
+ $MODPROBE pppox > /dev/null 2>&1
|
||||
+ $MODPROBE pppoe > /dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
||||
@@ -131,7 +128,7 @@
|
||||
PPPD_SYNC=sync
|
||||
# Increase the chances of it working on Linux...
|
||||
if test `uname -s` = Linux ; then
|
||||
- modprobe n_hdlc > /dev/null 2>&1
|
||||
+ $MODPROBE n_hdlc > /dev/null 2>&1
|
||||
fi
|
||||
else
|
||||
PPPOE_SYNC=""
|
||||
@@ -204,7 +201,7 @@
|
||||
|
||||
# Interface name MUST BE LAST!!
|
||||
PLUGIN_OPTS="$PLUGIN_OPTS $ETH"
|
||||
- modprobe pppoe > /dev/null 2>&1
|
||||
+ $MODPROBE pppoe > /dev/null 2>&1
|
||||
fi
|
||||
|
||||
if test "$DEFAULTROUTE" != "no" ; then
|
||||
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-setup.in rp-pppoe-3.5-4/scripts/adsl-setup.in
|
||||
--- rp-pppoe-3.5-orig/scripts/adsl-setup.in 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/scripts/adsl-setup.in 2005-03-09 17:24:02.000000000 +0100
|
||||
@@ -27,7 +27,7 @@
|
||||
LANG=C
|
||||
export LANG
|
||||
|
||||
-CONFIG=/etc/ppp/pppoe.conf
|
||||
+CONFIG=/etc/pppoe.conf
|
||||
|
||||
# Protect created files
|
||||
umask 077
|
||||
@@ -46,12 +46,6 @@
|
||||
$ECHO "properly..."
|
||||
$ECHO ""
|
||||
|
||||
-# Must be root
|
||||
-if [ "`@ID@ -u`" != 0 ] ; then
|
||||
- $ECHO "$0: Sorry, you must be root to run this script"
|
||||
- exit 1
|
||||
-fi
|
||||
-
|
||||
# Prototype config file must exist
|
||||
if [ ! -r "$CONFIG" ] ; then
|
||||
$ECHO "Oh, dear, I don't see the file '$CONFIG' anywhere. Please"
|
||||
@@ -280,12 +274,7 @@
|
||||
fi
|
||||
fi
|
||||
|
||||
-# Where is pppd likely to put its pid?
|
||||
-if [ -d /var/run ] ; then
|
||||
- VARRUN=/var/run
|
||||
-else
|
||||
- VARRUN=/etc/ppp
|
||||
-fi
|
||||
+VARRUN=/var/run
|
||||
|
||||
# Some #$(*& ISP's use a slash in the user name...
|
||||
sed -e "s&^USER=.*&USER='$U'&" \
|
||||
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-start.in rp-pppoe-3.5-4/scripts/adsl-start.in
|
||||
--- rp-pppoe-3.5-orig/scripts/adsl-start.in 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/scripts/adsl-start.in 2005-03-10 00:53:13.000000000 +0100
|
||||
@@ -18,7 +18,7 @@
|
||||
# Usage: adsl-start [config_file]
|
||||
# adsl-start interface user [config_file]
|
||||
# Second form overrides USER and ETH from config file.
|
||||
-# If config_file is omitted, defaults to /etc/ppp/pppoe.conf
|
||||
+# If config_file is omitted, defaults to /etc/pppoe.conf
|
||||
#
|
||||
#***********************************************************************
|
||||
|
||||
@@ -36,15 +36,13 @@
|
||||
export LANG
|
||||
|
||||
# Defaults
|
||||
-CONFIG=/etc/ppp/pppoe.conf
|
||||
+CONFIG=/etc/pppoe.conf
|
||||
USER=""
|
||||
ETH=""
|
||||
ME=`basename $0`
|
||||
-# Must be root
|
||||
-if [ "`@ID@ -u`" != 0 ] ; then
|
||||
- $ECHO "$ME: You must be root to run this script" >& 2
|
||||
- exit 1
|
||||
-fi
|
||||
+
|
||||
+#TTY_S="tty -s"
|
||||
+TTY_S=/bin/true
|
||||
|
||||
# Debugging
|
||||
if [ "$DEBUG" = "1" ] ; then
|
||||
@@ -139,6 +137,8 @@
|
||||
fi
|
||||
# Delete bogus PIDFILE
|
||||
rm -f "$PIDFILE" "$PIDFILE.pppd" "$PIDFILE.pppoe" "$PIDFILE.start"
|
||||
+else
|
||||
+ mkdir -p /var/run
|
||||
fi
|
||||
|
||||
echo $$ > $PIDFILE.start
|
||||
@@ -169,14 +169,14 @@
|
||||
# Looks like the interface came up
|
||||
if [ $? = 0 ] ; then
|
||||
# Print newline if standard input is a TTY
|
||||
- tty -s && $ECHO " Connected!"
|
||||
+ $TTY_S && $ECHO " Connected!"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if test -n "$FORCEPING" ; then
|
||||
$ECHO -n "$FORCEPING"
|
||||
else
|
||||
- tty -s && $ECHO -n "$PING"
|
||||
+ $TTY_S && $ECHO -n "$PING"
|
||||
fi
|
||||
sleep $CONNECT_POLL
|
||||
TIME=`expr $TIME + $CONNECT_POLL`
|
||||
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-status rp-pppoe-3.5-4/scripts/adsl-status
|
||||
--- rp-pppoe-3.5-orig/scripts/adsl-status 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/scripts/adsl-status 2005-03-10 01:01:17.000000000 +0100
|
||||
@@ -15,12 +15,12 @@
|
||||
# LIC: GPL
|
||||
#
|
||||
# Usage: adsl-status [config_file]
|
||||
-# If config_file is omitted, defaults to /etc/ppp/pppoe.conf
|
||||
+# If config_file is omitted, defaults to /etc/pppoe.conf
|
||||
#
|
||||
#***********************************************************************
|
||||
|
||||
# Defaults
|
||||
-CONFIG=/etc/ppp/pppoe.conf
|
||||
+CONFIG=/etc/pppoe.conf
|
||||
|
||||
case "$#" in
|
||||
1)
|
||||
@@ -58,10 +58,7 @@
|
||||
|
||||
PPPD_PID=`cat "$PPPD_PIDFILE"`
|
||||
|
||||
-# Sigh. Some versions of pppd put PID files in /var/run; others put them
|
||||
-# in /etc/ppp. Since it's too messy to figure out what pppd does, we
|
||||
-# try both locations.
|
||||
-for i in /etc/ppp/ppp*.pid /var/run/ppp*.pid ; do
|
||||
+for i in /var/run/ppp*.pid ; do
|
||||
if [ -r $i ] ; then
|
||||
PID=`cat $i`
|
||||
if [ "$PID" = "$PPPD_PID" ] ; then
|
||||
diff -ruN rp-pppoe-3.5-orig/scripts/adsl-stop.in rp-pppoe-3.5-4/scripts/adsl-stop.in
|
||||
--- rp-pppoe-3.5-orig/scripts/adsl-stop.in 2002-07-08 16:38:24.000000000 +0200
|
||||
+++ rp-pppoe-3.5-4/scripts/adsl-stop.in 2005-03-09 16:37:38.000000000 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
# LIC: GPL
|
||||
#
|
||||
# Usage: adsl-stop [config_file]
|
||||
-# If config_file is omitted, defaults to /etc/ppp/pppoe.conf
|
||||
+# If config_file is omitted, defaults to /etc/pppoe.conf
|
||||
#
|
||||
#***********************************************************************
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
LOGGER="/usr/bin/logger -t $ME"
|
||||
CONFIG="$1"
|
||||
if [ "$CONFIG" = "" ] ; then
|
||||
- CONFIG=/etc/ppp/pppoe.conf
|
||||
+ CONFIG=/etc/pppoe.conf
|
||||
fi
|
||||
|
||||
if [ ! -f "$CONFIG" -o ! -r "$CONFIG" ] ; then
|
Loading…
x
Reference in New Issue
Block a user