summaryrefslogtreecommitdiff
path: root/net/nsd
diff options
context:
space:
mode:
authorryoon <ryoon@pkgsrc.org>2016-10-26 23:40:35 +0000
committerryoon <ryoon@pkgsrc.org>2016-10-26 23:40:35 +0000
commitc6c9a276df3b210f1fcf8eec6e78f435e6b69290 (patch)
tree9557b3e0d4bac3e2f6ba727ffe09eac8592e8c89 /net/nsd
parent331a70bd4ebeca4e61674fe4e215dc19fa37a2ec (diff)
downloadpkgsrc-c6c9a276df3b210f1fcf8eec6e78f435e6b69290.tar.gz
Update to 4.1.13
* Remove an useless patch Changelog: NSD 4.1.13 Sep 27, 2016 Features multi-master-check: yes can be used to check all masters for the last version, using the higher version from the configured masters, from Manabu Sonoda. Support RR type OPENPGPKEY from RFC 7929. Can config key algorithms with the digest name, eg. 'sha256'. configure --disable-radix-tree for about 15% lower memory usage. for type SRV add A/AAAA to the additional section (if possible), just like we already do for type MX. more extensible edns option handling. Bugfixes Fix compile warnings about unused result from write and strtol. and signcompare in minmax retrytime. Fix #812: fix that make depend fails after distribution. Fix #817: xfrd update failed loop. Add robustness against unallocated data in nsec3 trees. Fix README spelling error of BSD license (reported by Joerg Jung). Fix multimaster for not tried full zone transfer for a expired zone. Fix #827: fix compile with openssl 1.1.0 with api=1.1.0.
Diffstat (limited to 'net/nsd')
-rw-r--r--net/nsd/Makefile6
-rw-r--r--net/nsd/distinfo11
-rw-r--r--net/nsd/patches/patch-util.c15
3 files changed, 7 insertions, 25 deletions
diff --git a/net/nsd/Makefile b/net/nsd/Makefile
index 656ecd350bc..d787055e9f3 100644
--- a/net/nsd/Makefile
+++ b/net/nsd/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.87 2016/09/14 12:51:41 ryoon Exp $
+# $NetBSD: Makefile,v 1.88 2016/10/26 23:40:35 ryoon Exp $
-DISTNAME= nsd-4.1.12
+DISTNAME= nsd-4.1.13
CATEGORIES= net
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/
@@ -63,8 +63,6 @@ OWN_DIRS_PERMS+= ${VARBASE}/nsd ${NSD_USER} ${NSD_GROUP} 755
INSTALLATION_DIRS= share/examples/nsd
INSTALLATION_DIRS+= ${VARBASE}/nsd
-CFLAGS.SunOS+= -Du_int32_t=uint32_t
-
.include "../../devel/libevent/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/net/nsd/distinfo b/net/nsd/distinfo
index 8e6b5f7cd18..a602418ca46 100644
--- a/net/nsd/distinfo
+++ b/net/nsd/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.55 2016/09/14 12:51:41 ryoon Exp $
+$NetBSD: distinfo,v 1.56 2016/10/26 23:40:35 ryoon Exp $
-SHA1 (nsd-4.1.12.tar.gz) = 5ac1d6df977371a6c661d932fb606a480e8e37ce
-RMD160 (nsd-4.1.12.tar.gz) = 089be8d2901326657e4694ffc56602ab1b7c963d
-SHA512 (nsd-4.1.12.tar.gz) = f78c0a24669ce8a0cf5640d90f5dfc8756009a840545feddd9c466a5f0b7441d470efb267f7ad38ed45321a6f8b75ad7db9b13bdaefab55b7614ebb3e9bd183b
-Size (nsd-4.1.12.tar.gz) = 1080273 bytes
+SHA1 (nsd-4.1.13.tar.gz) = d3f328b3236d56beaaf3ed6269aa8c6e184f8723
+RMD160 (nsd-4.1.13.tar.gz) = 1ab4ccc47da3f93487c2eee960f30d4a72ba990a
+SHA512 (nsd-4.1.13.tar.gz) = f355402273480b2befe914ab2e933c37ec35e5c8e747f85ba03bf8928e42ab809bb6b21cf2b8bf11e8d422a795254e1d916b154156243bc94752a01fb540525e
+Size (nsd-4.1.13.tar.gz) = 1085701 bytes
SHA1 (patch-aa) = d9a423d5faa8da9a213b21fd2712225ac9645091
-SHA1 (patch-util.c) = acaf676e675fc07ef51b4c1cc056214731bc193f
diff --git a/net/nsd/patches/patch-util.c b/net/nsd/patches/patch-util.c
deleted file mode 100644
index 8a6986cd252..00000000000
--- a/net/nsd/patches/patch-util.c
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-util.c,v 1.1 2011/09/12 17:05:02 taca Exp $
-
-* Use u_int32_t instead of obsolete u_long.
-
---- util.c.orig 2011-03-22 13:13:32.000000000 +0000
-+++ util.c
-@@ -742,7 +742,7 @@ mktime_from_utc(const struct tm *tm)
- http://www.tsfr.org/~orc/Code/bsd/bsd-current/cksum/crc.c.
- or http://gobsd.com/code/freebsd/usr.bin/cksum/crc.c
- The polynomial is 0x04c11db7L. */
--static u_long crctab[] = {
-+static const u_int32_t crctab[] = {
- 0x0,
- 0x04c11db7, 0x09823b6e, 0x0d4326d9, 0x130476dc, 0x17c56b6b,
- 0x1a864db2, 0x1e475005, 0x2608edb8, 0x22c9f00f, 0x2f8ad6d6,