diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-03-26 09:13:06 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-03-26 09:13:06 +0000 |
commit | 96ffec7fd256c073319f89fe25cf8af66ae07ba8 (patch) | |
tree | 31ef1b33834d81c045cae5099e060a20f82279ca /net-dialup/pptpd/files | |
parent | Removed old non-working CVS ebuild, bumped to a newer CVS snapshot. Thanks t... (diff) | |
download | historical-96ffec7fd256c073319f89fe25cf8af66ae07ba8.tar.gz historical-96ffec7fd256c073319f89fe25cf8af66ae07ba8.tar.bz2 historical-96ffec7fd256c073319f89fe25cf8af66ae07ba8.zip |
Version bump. Fix syslog flood with messages like "GRE: accepting packet" (#127388).
Package-Manager: portage-2.0.54
Diffstat (limited to 'net-dialup/pptpd/files')
-rw-r--r-- | net-dialup/pptpd/files/digest-pptpd-1.3.1 | 1 | ||||
-rw-r--r-- | net-dialup/pptpd/files/pptpd-1.3.1-gentoo.patch | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/net-dialup/pptpd/files/digest-pptpd-1.3.1 b/net-dialup/pptpd/files/digest-pptpd-1.3.1 new file mode 100644 index 000000000000..7cb46db83e48 --- /dev/null +++ b/net-dialup/pptpd/files/digest-pptpd-1.3.1 @@ -0,0 +1 @@ +MD5 1ad4bf5e99670cab37b90252cc1d691a pptpd-1.3.1.tar.gz 232609 diff --git a/net-dialup/pptpd/files/pptpd-1.3.1-gentoo.patch b/net-dialup/pptpd/files/pptpd-1.3.1-gentoo.patch new file mode 100644 index 000000000000..3e2bb44ee6df --- /dev/null +++ b/net-dialup/pptpd/files/pptpd-1.3.1-gentoo.patch @@ -0,0 +1,48 @@ +diff -Nru pptpd-1.3.1.orig/Makefile.am pptpd-1.3.1/Makefile.am +--- pptpd-1.3.1.orig/Makefile.am 2006-02-14 02:25:29.000000000 +0200 ++++ pptpd-1.3.1/Makefile.am 2006-03-26 12:07:02.000000000 +0300 +@@ -11,7 +11,7 @@ + ## warning with -Wmissing-prototypes). + ## -Wmissing-prototypes removed (eg, Linux 2.2.6 headers + ## aren't up to it). +-CFLAGS = -O2 -fno-builtin -Wall -DSBINDIR='"$(sbindir)"' ++CFLAGS += -fno-builtin -Wall -DSBINDIR='"$(sbindir)"' + #CFLAGS = -O2 -fno-builtin -Wall -ansi -DSBINDIR='"$(sbindir)"' + #CFLAGS = -O2 -fno-builtin -Wall -ansi -pedantic -Wmissing-prototypes -Werror -DSBINDIR='"$(sbindir)"' + +diff -Nru pptpd-1.3.1.orig/plugins/Makefile pptpd-1.3.1/plugins/Makefile +--- pptpd-1.3.1.orig/plugins/Makefile 2004-05-21 12:26:37.000000000 +0300 ++++ pptpd-1.3.1/plugins/Makefile 2006-03-26 12:07:02.000000000 +0300 +@@ -1,6 +1,5 @@ + CC = gcc +-COPTS = -O2 -g +-CFLAGS = $(COPTS) -I.. -I../../include -fPIC ++CFLAGS += -g -I.. -I../../include -fPIC + LDFLAGS = -shared + INSTALL = install -o root + prefix = /usr/local +diff -Nru pptpd-1.3.1.orig/pptpgre.c pptpd-1.3.1/pptpgre.c +--- pptpd-1.3.1.orig/pptpgre.c 2005-12-29 02:10:32.000000000 +0200 ++++ pptpd-1.3.1/pptpgre.c 2006-03-26 12:08:10.000000000 +0300 +@@ -399,7 +399,7 @@ + } + /* check for out-of-order sequence number */ + if (seq_greater(seq, gre.seq_recv)) { +- syslog(LOG_DEBUG, "GRE: accepting packet #%d", seq); ++ /* syslog(LOG_DEBUG, "GRE: accepting packet #%d", seq); */ + stats.rx_accepted++; + gre.seq_recv = seq; + return cb(cl, buffer + ip_len + headersize, payload_len); +diff -Nru pptpd-1.3.1.orig/pqueue.c pptpd-1.3.1/pqueue.c +--- pptpd-1.3.1.orig/pqueue.c 2005-08-03 11:53:22.000000000 +0300 ++++ pptpd-1.3.1/pqueue.c 2006-03-26 12:07:04.000000000 +0300 +@@ -12,7 +12,8 @@ + #define DEBUG_ON 0 + #endif + +-#define DEBUG_CMD(_a) if (DEBUG_ON) { _a } ++/* #define DEBUG_CMD(_a) if (DEBUG_ON) { _a } */ ++#define DEBUG_CMD(_a) + + #define MIN_CAPACITY 128 /* min allocated buffer for a packet */ + |