diff options
author | billf <billf@FreeBSD.org> | 2004-04-23 11:39:52 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 2004-04-23 11:39:52 +0800 |
commit | 49155bb85a5637e1306d079f791ce8e10b1124b6 (patch) | |
tree | e1c04c939fa5bebaa35897b34ac00eeb8f11a996 /net/mtr | |
parent | 78b450795153a90162bcbabf36ac2b42a0e87b0d (diff) | |
download | freebsd-ports-gnome-49155bb85a5637e1306d079f791ce8e10b1124b6.tar.gz freebsd-ports-gnome-49155bb85a5637e1306d079f791ce8e10b1124b6.tar.zst freebsd-ports-gnome-49155bb85a5637e1306d079f791ce8e10b1124b6.zip |
update to 0.58
ipv6 is disabled until ftp.kame.net comes out from behind a routing loop
Diffstat (limited to 'net/mtr')
-rw-r--r-- | net/mtr/Makefile | 5 | ||||
-rw-r--r-- | net/mtr/distinfo | 6 | ||||
-rw-r--r-- | net/mtr/files/patch-02 | 10 |
3 files changed, 9 insertions, 12 deletions
diff --git a/net/mtr/Makefile b/net/mtr/Makefile index 3955640b54f8..cd4db0267def 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -6,8 +6,7 @@ # PORTNAME= mtr -PORTVERSION= 0.54 -PORTREVISION= 4 +PORTVERSION= 0.58 CATEGORIES= net ipv6 MASTER_SITES= ftp://ftp.bitwizard.nl/mtr/ \ ftp://ftp.netsw.org/net/ip/audit/packets/ \ @@ -19,7 +18,7 @@ COMMENT= Traceroute and ping in a single graphical network diagnostic tool GNU_CONFIGURE= yes USE_GMAKE= yes WANT_GNOME= yes -WANT_IPV6= yes +#WANT_IPV6= yes MAN8= mtr.8 PLIST_FILES= sbin/mtr diff --git a/net/mtr/distinfo b/net/mtr/distinfo index 66fdc5699561..d688678ae843 100644 --- a/net/mtr/distinfo +++ b/net/mtr/distinfo @@ -1,4 +1,2 @@ -MD5 (mtr-0.54.tar.gz) = 7f7ecb50fc37fedb13135a5ef80fda7d -SIZE (mtr-0.54.tar.gz) = 88751 -MD5 (mtr-054-v6-20040216.diff.gz) = a17f1d3a4ee9e587a48f2a26f004ac3c -SIZE (mtr-054-v6-20040216.diff.gz) = 19908 +MD5 (mtr-0.58.tar.gz) = 145a73ec008e590fd5d96ae5f53ee9f8 +SIZE (mtr-0.58.tar.gz) = 93987 diff --git a/net/mtr/files/patch-02 b/net/mtr/files/patch-02 index afb1b7d51285..eff3df8029ff 100644 --- a/net/mtr/files/patch-02 +++ b/net/mtr/files/patch-02 @@ -1,13 +1,13 @@ ---- dns.c.orig Sun Feb 9 17:40:31 2003 -+++ dns.c Sun Feb 9 17:41:03 2003 -@@ -835,8 +835,8 @@ - void dorequest(char *s,int type,word id){ +--- dns.c.orig Wed Apr 7 05:33:55 2004 ++++ dns.c Thu Apr 22 20:34:45 2004 +@@ -767,8 +767,8 @@ + { packetheader *hp; int r,i; - int buf[(MaxPacketsize/sizeof (int))+1]; - r = res_mkquery(QUERY,s,C_IN,type,NULL,0,NULL,(unsigned char*)buf,MaxPacketsize); + unsigned char buf[MaxPacketsize]; + r = res_mkquery(QUERY,s,C_IN,type,NULL,0,NULL,buf,MaxPacketsize); - if (r == -1){ + if (r == -1) { restell("Resolver error: Query too large."); return; |