summaryrefslogtreecommitdiffstats
path: root/usr.sbin/nsd/configure.ac
diff options
context:
space:
mode:
authorsthen <sthen@openbsd.org>2018-03-06 21:01:56 +0000
committersthen <sthen@openbsd.org>2018-03-06 21:01:56 +0000
commitb90bb40ec7347ca2da354e4585275903879368db (patch)
tree5073bf2a9be3f17a9aacd721c909ddf791786454 /usr.sbin/nsd/configure.ac
parentFix a small mistake from r1.229 causing sysctl(8) to print "newval -> newval" (diff)
downloadwireguard-openbsd-b90bb40ec7347ca2da354e4585275903879368db.tar.xz
wireguard-openbsd-b90bb40ec7347ca2da354e4585275903879368db.zip
update to NSD 4.1.20, ok florian@
- Fix memory leak in zone file read of unknown rr formatted RRs. - Fix memory leak when rehashing nsec3 after axfr or zonefile read, in the selectively allocated precompiled nsec3 hashes.
Diffstat (limited to 'usr.sbin/nsd/configure.ac')
-rw-r--r--usr.sbin/nsd/configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/nsd/configure.ac b/usr.sbin/nsd/configure.ac
index 7dd787eaed5..8c11b400c6a 100644
--- a/usr.sbin/nsd/configure.ac
+++ b/usr.sbin/nsd/configure.ac
@@ -4,7 +4,7 @@ dnl
sinclude(acx_nlnetlabs.m4)
-AC_INIT(NSD,4.1.19,nsd-bugs@nlnetlabs.nl)
+AC_INIT(NSD,4.1.20,nsd-bugs@nlnetlabs.nl)
AC_CONFIG_HEADER([config.h])
CFLAGS="$CFLAGS"
@@ -800,6 +800,10 @@ case "$enable_checking" in
;;
esac
+AC_ARG_ENABLE(memclean, AC_HELP_STRING([--enable-memclean], [Cleanup memory (at exit) for eg. valgrind, memcheck]))
+if test "$enable_memclean" = "yes"; then AC_DEFINE_UNQUOTED([MEMCLEAN], [1], [Define this to cleanup memory at exit (eg. for valgrind, etc.)])
+fi
+
AC_ARG_ENABLE(ratelimit, AC_HELP_STRING([--enable-ratelimit], [Enable rate limiting]))
case "$enable_ratelimit" in
yes)