summaryrefslogtreecommitdiff
path: root/net/mrtg
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2002-11-19 11:24:28 +0000
committermartti <martti@pkgsrc.org>2002-11-19 11:24:28 +0000
commit78409539e5723c78e68eca3bd8795cb1d5587b11 (patch)
tree08bb0db7d1e78f4f56e540ca3297a81db9e0783c /net/mrtg
parentd00ac7068d205dde52abc534d9f3a603ab5000ec (diff)
downloadpkgsrc-78409539e5723c78e68eca3bd8795cb1d5587b11.tar.gz
Updated mrtg to 2.9.26.2nb1
Avoid negative request ids (default_avoid_negative_request_ids=1) as this might cause problems with some devices. Solution provided by Tobias Oetiker in a private mail.
Diffstat (limited to 'net/mrtg')
-rw-r--r--net/mrtg/Makefile5
-rw-r--r--net/mrtg/distinfo3
-rw-r--r--net/mrtg/patches/patch-ae13
3 files changed, 18 insertions, 3 deletions
diff --git a/net/mrtg/Makefile b/net/mrtg/Makefile
index bb7da6ed4c1..a4a69777439 100644
--- a/net/mrtg/Makefile
+++ b/net/mrtg/Makefile
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.33 2002/11/18 14:12:54 martti Exp $
+# $NetBSD: Makefile,v 1.34 2002/11/19 11:24:28 martti Exp $
#
DISTNAME= mrtg-2.9.26b
-PKGNAME= mrtg-2.9.26.2
+PKGNAME= mrtg-2.9.26.2
+PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/pub/ \
http://gd.tuwien.ac.at/infosys/network/tools/mrtg/pub/ \
diff --git a/net/mrtg/distinfo b/net/mrtg/distinfo
index fbf005cf492..968ff8b5c75 100644
--- a/net/mrtg/distinfo
+++ b/net/mrtg/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2002/11/18 14:12:54 martti Exp $
+$NetBSD: distinfo,v 1.7 2002/11/19 11:24:28 martti Exp $
SHA1 (mrtg-2.9.26b.tar.gz) = a2ee04326234f6d96ff3223d1b901d1358b80641
Size (mrtg-2.9.26b.tar.gz) = 1013564 bytes
@@ -6,3 +6,4 @@ SHA1 (patch-aa) = 623fed93b4247e0da7ac34a0c8ae3ee2d17a5df7
SHA1 (patch-ab) = bf367e6c43030a9cb64a88336b66932d7e05025c
SHA1 (patch-ac) = 77e5a9894e6214962d453421abba00e896761dbb
SHA1 (patch-ad) = 1bb158d2fe639284c43e0bdb213fd7788cd66954
+SHA1 (patch-ae) = 98f93ae72aac4cc63e5c6b11152e5ccec425def3
diff --git a/net/mrtg/patches/patch-ae b/net/mrtg/patches/patch-ae
new file mode 100644
index 00000000000..e57681562d4
--- /dev/null
+++ b/net/mrtg/patches/patch-ae
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.1 2002/11/19 11:24:29 martti Exp $
+
+--- lib/mrtg2/SNMP_Session.pm.orig Tue Nov 19 13:12:41 2002
++++ lib/mrtg2/SNMP_Session.pm Tue Nov 19 13:13:35 2002
+@@ -99,7 +99,7 @@
+ ### some agents erroneously encode the response ID as an unsigned,
+ ### which prevents this code from matching such responses to requests.
+ ###
+-my $default_avoid_negative_request_ids = 0;
++my $default_avoid_negative_request_ids = 1;
+
+ ### Whether all SNMP_Session objects should share a single UDP socket.
+ ###