summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxtraeme <xtraeme@pkgsrc.org>2004-01-22 12:20:33 +0000
committerxtraeme <xtraeme@pkgsrc.org>2004-01-22 12:20:33 +0000
commit10b6e5216a415a20b0b78cb336ce40cf21ae65c2 (patch)
tree7b69fafd4a28dde79718ca40ca5e20a00f59632e
parent4d4d895e5a4f222655fa3da7c12d1564c50b90c7 (diff)
downloadpkgsrc-10b6e5216a415a20b0b78cb336ce40cf21ae65c2.tar.gz
Update adns to 1.1, provided by Min Sik Kim in PR pkg/24177.
Changes: Major bugfixes: * Do not spin if connect() fails immediately (!) * Stop searching on a CNAME (even if it's broken). * When search list runs out, _qf_owner sets owner to query domain. * Fix bogus multiple updates to p in transmit.c (!) Portability improvements: * Fix up spurious #undef's in hredirect.h. * Don't use <sys/select.h> any more, it was a mistake made in pre-1.0 (and there doesn't seem to be much explanation why). * Understand and sort of check OpenBSD `lookup' resolv.conf directive. * #include <stdlib.h> in internal.h (for abort etc). * Always #include <sys/types.h> before <sys/socket.h> (for FreeBSD 4.6). Cosmetic and documentation improvements: * Added wishlist entry re configurable port no. * Problem with SERVFAIL in TODO. * README.html: mentioned Jarle Aase's Windows port, and other fixes. * Some better source code formatting/wrapping.
-rw-r--r--net/adns/Makefile4
-rw-r--r--net/adns/distinfo6
-rw-r--r--net/adns/patches/patch-ac16
3 files changed, 5 insertions, 21 deletions
diff --git a/net/adns/Makefile b/net/adns/Makefile
index c3846e6f41f..28a88936ec4 100644
--- a/net/adns/Makefile
+++ b/net/adns/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2003/07/17 22:50:58 grant Exp $
+# $NetBSD: Makefile,v 1.7 2004/01/22 12:20:33 xtraeme Exp $
#
-DISTNAME= adns-1.0
+DISTNAME= adns-1.1
CATEGORIES= net
MASTER_SITES= http://www.chiark.greenend.org.uk/~ian/adns/ftp/
diff --git a/net/adns/distinfo b/net/adns/distinfo
index e33a52a946e..af087f60d69 100644
--- a/net/adns/distinfo
+++ b/net/adns/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.5 2002/08/25 19:23:11 jlam Exp $
+$NetBSD: distinfo,v 1.6 2004/01/22 12:20:33 xtraeme Exp $
-SHA1 (adns-1.0.tar.gz) = 7675da67c7829f2db9a6fafd64f1f90c7bce412a
-Size (adns-1.0.tar.gz) = 208741 bytes
+SHA1 (adns-1.1.tar.gz) = cd47dfc819b147b3275eaf6316f17f15be7187e5
+Size (adns-1.1.tar.gz) = 211455 bytes
SHA1 (patch-aa) = 17764ad5a7557bcda1fda5fdb62fbb7d4e0cd075
SHA1 (patch-ab) = 3eaa20dbe95de934693c00b73d42fbaf8ff5e5e9
SHA1 (patch-ac) = 08c0acfc4546f370e2b0dfcae51981e4dc1cf822
diff --git a/net/adns/patches/patch-ac b/net/adns/patches/patch-ac
deleted file mode 100644
index 5acd8b6418c..00000000000
--- a/net/adns/patches/patch-ac
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2002/08/25 19:23:12 jlam Exp $
-
-Need to include sys/types.h so that pid_t is a defined type for
-sys/select.h.
-
---- src/internal.h.orig Sat Sep 16 20:24:24 2000
-+++ src/internal.h
-@@ -30,6 +30,8 @@
- #ifndef ADNS_INTERNAL_H_INCLUDED
- #define ADNS_INTERNAL_H_INCLUDED
-
-+#include <sys/types.h>
-+
- #include "config.h"
- typedef unsigned char byte;
-