diff options
author | wiz <wiz> | 2006-07-17 17:24:34 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-07-17 17:24:34 +0000 |
commit | 176a34973ddc9f6bb7b3a9c33010d69ded3411a8 (patch) | |
tree | 34ea6dacb9050ef891e698787c947693f713ab05 /net | |
parent | 5479f173e3b41563a17f62e20e27128735efde71 (diff) | |
download | pkgsrc-176a34973ddc9f6bb7b3a9c33010d69ded3411a8.tar.gz |
Update to 1.5, provided by Makoto Fujiwara in PR 34014:
pchar-1.5: Compile fixes, minor bug fixes. Last planned release of pchar.
(12 February 2005)
Source code moved from CVS to Subversion. Although generally
not user-visible, the version control strings now use
Subversion's format.
Builds on recent (RH 9.0-vintage) Linux systems seem to work
now.
Some off-by-one errors have been fixed, based on
patches submitted by Anil Madhavapeddy
pchar with SNMP enabled now has at least a chance of working
correctly.
pchar no longer incorrectly aborts after a hop with 100%
packet loss.
pchar now does a better job of linking libraries using
--with-snmp on machines where libsnmp depends on libcrypto,
thanks to Matt Zimmerman
Some problems using --with-pcap on RedHat 7.0/7.1 (possibly
other Linux distributions as well) were found thanks to a
debugging session with Fran Boon
Diffstat (limited to 'net')
-rw-r--r-- | net/pchar/Makefile | 5 | ||||
-rw-r--r-- | net/pchar/distinfo | 9 | ||||
-rw-r--r-- | net/pchar/patches/patch-ab | 13 |
3 files changed, 20 insertions, 7 deletions
diff --git a/net/pchar/Makefile b/net/pchar/Makefile index 1fb3074896a..80e46ffe7f4 100644 --- a/net/pchar/Makefile +++ b/net/pchar/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.28 2006/05/14 18:45:25 seb Exp $ +# $NetBSD: Makefile,v 1.29 2006/07/17 17:24:34 wiz Exp $ -DISTNAME= pchar-1.4 -PKGREVISION= 4 +DISTNAME= pchar-1.5 CATEGORIES= net MASTER_SITES= http://www.employees.org/~bmah/Software/pchar/ diff --git a/net/pchar/distinfo b/net/pchar/distinfo index 91088bdc5d3..988b03dd670 100644 --- a/net/pchar/distinfo +++ b/net/pchar/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.6 2005/02/24 12:13:59 agc Exp $ +$NetBSD: distinfo,v 1.7 2006/07/17 17:24:34 wiz Exp $ -SHA1 (pchar-1.4.tar.gz) = ade7290a25e36a01888a2e17ef93b92baeb984db -RMD160 (pchar-1.4.tar.gz) = 759d4e4285ada7df11744acab77941497764ad66 -Size (pchar-1.4.tar.gz) = 117905 bytes +SHA1 (pchar-1.5.tar.gz) = 3e78505b881773d2a726b426c6023ee2519bed75 +RMD160 (pchar-1.5.tar.gz) = b8e600b9c11cf7e584768c87aadeeb9d7b482949 +Size (pchar-1.5.tar.gz) = 117678 SHA1 (patch-aa) = f570ee77f4f29b84ba77784d5bafacf1ed252ea6 +SHA1 (patch-ab) = 4761fe0cc6380a21e76c2cfcc29970466a001a84 diff --git a/net/pchar/patches/patch-ab b/net/pchar/patches/patch-ab new file mode 100644 index 00000000000..44a0d5cc00d --- /dev/null +++ b/net/pchar/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2006/07/17 17:24:35 wiz Exp $ + +--- GetIfInfo.h.orig 2006-07-17 15:13:30.000000000 +0900 ++++ GetIfInfo.h 2006-07-17 15:14:39.000000000 +0900 +@@ -18,7 +18,7 @@ + bool IsValid(void); + + const char * GetDescription(void) const; +- const char * GetIfInfo::GetName(void) const; ++ const char * GetName(void) const; + const char * GetContact(void) const; + const char * GetLocation(void) const; + const char * GetIfDescription(void) const; |