pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/net/nsd Update to 4.1.13



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5f8993f3b975
branches:  trunk
changeset: 354326:5f8993f3b975
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Wed Oct 26 23:40:35 2016 +0000

description:
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:

 net/nsd/Makefile             |   6 ++----
 net/nsd/distinfo             |  11 +++++------
 net/nsd/patches/patch-util.c |  15 ---------------
 3 files changed, 7 insertions(+), 25 deletions(-)

diffs (57 lines):

diff -r 6115538f4353 -r 5f8993f3b975 net/nsd/Makefile
--- a/net/nsd/Makefile  Wed Oct 26 22:51:46 2016 +0000
+++ b/net/nsd/Makefile  Wed Oct 26 23:40:35 2016 +0000
@@ -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 @@
 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 -r 6115538f4353 -r 5f8993f3b975 net/nsd/distinfo
--- a/net/nsd/distinfo  Wed Oct 26 22:51:46 2016 +0000
+++ b/net/nsd/distinfo  Wed Oct 26 23:40:35 2016 +0000
@@ -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 -r 6115538f4353 -r 5f8993f3b975 net/nsd/patches/patch-util.c
--- a/net/nsd/patches/patch-util.c      Wed Oct 26 22:51:46 2016 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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,



Home | Main Index | Thread Index | Old Index