diff options
author | itojun <itojun@pkgsrc.org> | 2003-06-17 07:50:44 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2003-06-17 07:50:44 +0000 |
commit | 894bf24a52d3106a21c4846440103822777e1fe2 (patch) | |
tree | ff1128e812123cd25a9330c9bc00715beb18646b /net/nsd/Makefile | |
parent | 7fff8b1dedd1a85dd53b668c1ded4489558b2ea9 (diff) | |
download | pkgsrc-894bf24a52d3106a21c4846440103822777e1fe2.tar.gz |
upgrade to 1.1
1.1
=============
FEATURES:
- ANSI C
- autoconf/configure
- new parser
- support for various RR types in zonec
- support for UNKN RR types
BUG FIXES:
- lots of zone parsing errors eliminated
- empty node matching bug gives NXDOMAIN
1.0.3
=============
This release is a bug fix release and does not add any new features.
BUG FIXES:
- Ignore SIGPIPE errors (bug #43).
- Keep track of TCP child servers and restart if necessary.
(bug #55)
- Handle database reload failures correctly.
- Close UDP sockets in TCP child servers.
- Handle escaped characters (besides \.) in labels.
- Preserve the query's RD flag in the answer.
1.0.2
=============
FEATURES:
- -DBIND8_STATS to enable bind8 like [NX]STATS
- -t flag to make nsd chroot to a certain directory
- -s flag to make nsd produce statistics every s seconds
- /etc/nsd/nsdc.conf to overwrite default variables
for nsdc.sh
- less loggin and more radical tcp connection (mis)handling
- prefork -n processes to handle tcp connections
- multiple -a flags
CHANGES:
- named.stats file functionality is removed
BUG FIXES:
- couple of pedantic fixes in C code
- last zone in database axfr bug fixed
- nsdc update wont update bug fixed
Diffstat (limited to 'net/nsd/Makefile')
-rw-r--r-- | net/nsd/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/nsd/Makefile b/net/nsd/Makefile index ad821d09ec6..e35a242d056 100644 --- a/net/nsd/Makefile +++ b/net/nsd/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2003/06/11 05:53:06 simonb Exp $ +# $NetBSD: Makefile,v 1.11 2003/06/17 07:50:44 itojun Exp $ -DISTNAME= nsd-1.0.1 -PKGNAME= nsd-1.0.1 +DISTNAME= nsd-1.1.0 +PKGNAME= nsd-1.1.0 CATEGORIES= net MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ @@ -9,6 +9,8 @@ MAINTAINER= tech-pkg@netbsd.org HOMEPAGE= http://www.nlnetlabs.nl/nsd/index.html COMMENT= authoritative-only DNS server -PKG_SYSCONFSUBDIR= nsd +GNU_CONFIGURE= yes + +CONFIGURE_ARGS= --sysconfdir=${PKG_SYSCONFDIR} .include "../../mk/bsd.pkg.mk" |