Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Oct 2016 16:37:31 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423081 - head/dns/nsd
Message-ID:  <201610011637.u91GbVbX086005@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pawel
Date: Sat Oct  1 16:37:31 2016
New Revision: 423081
URL: https://svnweb.freebsd.org/changeset/ports/423081

Log:
  Update to version 4.1.13
  
  SUMMARY:
  Some features, such as multi master check option that does not upgrade
  from the first master that answers, but picks the best one.
  Additional section handling for type SRV. And bug fixes.
  
  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.
  
  BUG FIXES:
  - 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.
  
  PR:		213021
  Submitted by:	maintainer

Modified:
  head/dns/nsd/Makefile
  head/dns/nsd/distinfo

Modified: head/dns/nsd/Makefile
==============================================================================
--- head/dns/nsd/Makefile	Sat Oct  1 16:22:39 2016	(r423080)
+++ head/dns/nsd/Makefile	Sat Oct  1 16:37:31 2016	(r423081)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	nsd
-PORTVERSION=	4.1.12
+PORTVERSION=	4.1.13
 CATEGORIES=	dns ipv6
 MASTER_SITES=	http://www.nlnetlabs.nl/downloads/nsd/	\
 		ftp://ftp.rhnet.is/pub/nsd/
@@ -50,8 +50,9 @@ PORTDOCS=	CREDITS ChangeLog LICENSE NSD-
 		differences.tex
 
 OPTIONS_DEFINE=		ROOT_SERVER LARGEFILE IPV6 BIND8_STATS CHECKING \
-		MINRESPSIZE NSEC3 MMAP DOCS RRL ZONE_STATS MUNIN_PLUGIN
-OPTIONS_DEFAULT=	LARGEFILE NSEC3 MINRESPSIZE RRL
+		MINRESPSIZE NSEC3 MMAP DOCS RRL ZONE_STATS MUNIN_PLUGIN \
+		RADIXTREE
+OPTIONS_DEFAULT=	LARGEFILE NSEC3 MINRESPSIZE RRL RADIXTREE
 OPTIONS_SUB=	yes
 
 MUNIN_PLUGIN_IMPLIES=	BIND8_STATS
@@ -66,6 +67,7 @@ MMAP_DESC=		Use mmap instead of malloc (
 RRL_DESC=		Response Rate Limiting
 ZONE_STATS_DESC=	Separate statistics for each zone
 MUNIN_PLUGIN_DESC=	Install Munin plugin (requires BIND8_STATS)
+RADIXTREE_DESC=		Enabled: more (15%) memory use but less CPU cycles
 
 LIB_DEPENDS+=	libevent.so:devel/libevent2
 
@@ -79,6 +81,7 @@ MMAP_CONFIGURE_ENABLE=		mmap
 RRL_CONFIGURE_ENABLE=		ratelimit
 ZONE_STATS_CONFIGURE_ENABLE=	zone-stats
 IPV6_CONFIGURE_ENABLE=		ipv6
+RADIXTREE_CONFIGURE_ENABLE=	radix-tree
 
 post-build-MUNIN_PLUGIN-on:
 	${REINPLACE_CMD} \

Modified: head/dns/nsd/distinfo
==============================================================================
--- head/dns/nsd/distinfo	Sat Oct  1 16:22:39 2016	(r423080)
+++ head/dns/nsd/distinfo	Sat Oct  1 16:37:31 2016	(r423081)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1472804520
-SHA256 (nsd-4.1.12.tar.gz) = fd1979dff1fba55310fd4f439dc9f3f4701d435c0ec4fb9af533e12c7f27d5de
-SIZE (nsd-4.1.12.tar.gz) = 1080273
+TIMESTAMP = 1474969514
+SHA256 (nsd-4.1.13.tar.gz) = c45cd4ba2101a027e133b2be44db9378e27602e05f09a5ef25019e1ae45291af
+SIZE (nsd-4.1.13.tar.gz) = 1085701



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610011637.u91GbVbX086005>