diff options
author | wiz <wiz@pkgsrc.org> | 2013-07-03 08:17:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-07-03 08:17:16 +0000 |
commit | 97dd6c4a613b24be2caf928db7c6e67b4827de67 (patch) | |
tree | d2ed074be7dfba02972ac0dab2acc77fb9ce316f /net/mtr | |
parent | 1e920c90da0f8f109715531ff8d5d7bb379889d5 (diff) | |
download | pkgsrc-97dd6c4a613b24be2caf928db7c6e67b4827de67.tar.gz |
Update to 0.85:
bugfixes.
Diffstat (limited to 'net/mtr')
-rw-r--r-- | net/mtr/Makefile | 5 | ||||
-rw-r--r-- | net/mtr/distinfo | 10 | ||||
-rw-r--r-- | net/mtr/patches/patch-asn.c | 16 | ||||
-rw-r--r-- | net/mtr/patches/patch-dns.h | 30 |
4 files changed, 6 insertions, 55 deletions
diff --git a/net/mtr/Makefile b/net/mtr/Makefile index 34dc1307b5b..c54be4eee57 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.81 2013/06/06 12:54:57 wiz Exp $ +# $NetBSD: Makefile,v 1.82 2013/07/03 08:17:16 wiz Exp $ -DISTNAME= mtr-0.84 -PKGREVISION= 3 +DISTNAME= mtr-0.85 CATEGORIES= net MASTER_SITES= ftp://ftp.bitwizard.nl/mtr/ diff --git a/net/mtr/distinfo b/net/mtr/distinfo index bfd3426318c..7ae38a4a0fd 100644 --- a/net/mtr/distinfo +++ b/net/mtr/distinfo @@ -1,7 +1,5 @@ -$NetBSD: distinfo,v 1.36 2013/03/09 10:25:28 tron Exp $ +$NetBSD: distinfo,v 1.37 2013/07/03 08:17:16 wiz Exp $ -SHA1 (mtr-0.84.tar.gz) = 7c8dc6a0412edaf32ebc94c8f765b14ae59e6163 -RMD160 (mtr-0.84.tar.gz) = 784eaea461e15080c0546e08a0907ca16949de40 -Size (mtr-0.84.tar.gz) = 286912 bytes -SHA1 (patch-asn.c) = 2491e791d393e30ade331337f9818775ece02295 -SHA1 (patch-dns.h) = 80b939a566180bfba72a1df82cf790f773b1c7d4 +SHA1 (mtr-0.85.tar.gz) = 77204a1a577cfca30c79c43a8fa3daafd280f1b8 +RMD160 (mtr-0.85.tar.gz) = 0ca692799d3b4d4358d02f72787e8705c061c817 +Size (mtr-0.85.tar.gz) = 534196 bytes diff --git a/net/mtr/patches/patch-asn.c b/net/mtr/patches/patch-asn.c deleted file mode 100644 index 07a74bf3110..00000000000 --- a/net/mtr/patches/patch-asn.c +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-asn.c,v 1.1 2013/03/09 10:25:28 tron Exp $ - -Fix build under Mac OS X. Based on this commit: - -https://github.com/mackyle/mtr/commit/8348cfdc39694f0ada686b8277b75b3f72c6a47f - ---- asn.c.orig 2013-02-23 15:13:40.000000000 +0000 -+++ asn.c 2013-03-09 09:48:21.000000000 +0000 -@@ -27,6 +27,7 @@ - #include <stdlib.h> - #include <sys/types.h> - -+#define BIND_8_COMPAT - #include <arpa/nameser.h> - #include <netdb.h> - #include <netinet/in.h> diff --git a/net/mtr/patches/patch-dns.h b/net/mtr/patches/patch-dns.h deleted file mode 100644 index 9ebe43f3067..00000000000 --- a/net/mtr/patches/patch-dns.h +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-dns.h,v 1.1 2013/03/09 10:25:28 tron Exp $ - -Fix build under Mac OS X. Based on this commit: - -https://github.com/mackyle/mtr/commit/8348cfdc39694f0ada686b8277b75b3f72c6a47f - ---- dns.h.orig 2013-02-23 15:13:40.000000000 +0000 -+++ dns.h 2013-03-09 10:21:42.000000000 +0000 -@@ -17,7 +17,7 @@ - */ - - #include <netinet/in.h> -- -+#include <resolv.h> - - /* Prototypes for dns.c */ - -@@ -27,10 +27,10 @@ - #ifdef ENABLE_IPV6 - int dns_waitfd6(void); - void dns_ack6(void); --#ifdef BSD -+#if defined(BSD) || defined(__APPLE__) - /* __res_state_ext is missing on many (most?) BSD systems - - this should probably be handled by autoconf */ --#ifndef __res_state_ext -+#if !defined(__res_state_ext) || defined(__APPLE__) - struct __res_state_ext { - union res_sockaddr_union nsaddrs[MAXNS]; - struct sort_list { |