Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Feb 2013 09:42:31 +0000 (UTC)
From:      Erwin Lansing <erwin@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r311685 - head/dns/nsd
Message-ID:  <201302050942.r159gVMl019251@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: erwin
Date: Tue Feb  5 09:42:31 2013
New Revision: 311685
URL: http://svnweb.freebsd.org/changeset/ports/311685

Log:
  - Update to 3.2.15
  
  Features
  * Support for ILNP RR types: NID, L32, L64, LP (RFC6742).
  * RRL, --enable-ratelimit at configure time and config options.
  * TSIG initialization only fails when there is no digest found at all.
  Bugfixes
  * Bugfix #478: Declaration after statement (for gcc 2.95).
  * Bugfix #483: Better error message in case of TSIG error.
  * Bugfix #485: TTL should not be greater than 2^31 - 1.
  * Fix RCODE when CNAME loop final answer does not exist,
  should return NXDOMAIN as stated by RFC 6604.
  * Fix --disable-full-prehash bug, where after multiple incoming IXFRs,
  NSEC3 can be removed unjustified.
  
  PR:		175837
  Submitted by:	Jaap Akkerhuis <jaap@NLnetLabs.nl> (maintainer)

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

Modified: head/dns/nsd/Makefile
==============================================================================
--- head/dns/nsd/Makefile	Tue Feb  5 09:35:28 2013	(r311684)
+++ head/dns/nsd/Makefile	Tue Feb  5 09:42:31 2013	(r311685)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	nsd
-PORTVERSION=	3.2.14
+PORTVERSION=	3.2.15
 CATEGORIES=	dns ipv6
 MASTER_SITES=	http://www.nlnetlabs.nl/downloads/nsd/	\
 		ftp://ftp.rhnet.is/pub/nsd/
@@ -46,7 +46,7 @@ PORTDOCS=	CREDITS ChangeLog LICENSE NSD-
 		differences.tex
 
 OPTIONS_DEFINE=	ROOT_SERVER LARGEFILE IPV6 BIND8_STATS ZONE_STATS CHECKING \
-		MINRESPSIZE NSEC3 NSEC3PREHASH MMAP MAXIPS DOCS
+		MINRESPSIZE NSEC3 NSEC3PREHASH MMAP MAXIPS DOCS RRL
 OPTIONS_DEFAULT=	LARGEFILE IPV6 NSEC3 NSEC3PREHASH MINRESPSIZE
 
 ROOT_SERVER_DESC=	Configure as a root server
@@ -59,6 +59,7 @@ NSEC3PREHASH_DESC=	Full NSEC3 pre-hashin
 MINRESPSIZE_DESC=	Minimial response sizing
 MMAP_DESC=		Use mmap instead of malloc (experimental)
 MAXIPS_DESC=		Raise max-ips from 8 to ${NSDMAX_IPS}
+RRL_DESC=		Response Rate Limiting
 
 .include <bsd.port.options.mk>
 
@@ -109,6 +110,10 @@ CONFIGURE_ARGS+=	--enable-mmap
 CONFIGURE_ARGS+=	--with-max-ips=${NSDMAX_IPS}
 .endif
 
+.if ${PORT_OPTIONS:MRRL}
+CONFIGURE_ARGS+=	--enable-ratelimit
+.endif
+
 pre-patch:
 .if defined(NSD_OPTIONS)
 	@${ECHO_MSG}

Modified: head/dns/nsd/distinfo
==============================================================================
--- head/dns/nsd/distinfo	Tue Feb  5 09:35:28 2013	(r311684)
+++ head/dns/nsd/distinfo	Tue Feb  5 09:42:31 2013	(r311685)
@@ -1,2 +1,2 @@
-SHA256 (nsd-3.2.14.tar.gz) = c338780412f330e492e74a51fb99a4610d1f4c9095293a231e42e29d045a104c
-SIZE (nsd-3.2.14.tar.gz) = 890523
+SHA256 (nsd-3.2.15.tar.gz) = a1a0eaf88c2d788fcdafd6848a1ff45e113e95cfc17a87fb0e71eab34ffdad64
+SIZE (nsd-3.2.15.tar.gz) = 909346



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