aboutsummaryrefslogtreecommitdiff
path: root/dns
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2021-03-19 14:32:20 +0000
committerMathieu Arnold <mat@FreeBSD.org>2021-03-19 14:32:20 +0000
commit03f03ace9ac4ee4e05f4ed4997430804aa8aa408 (patch)
treeb24b33a9faa7e88e4ba951cb4d6809aaa551be26 /dns
parentc4f16514fdfc7b96db37f2dc141f7c2a831d5337 (diff)
downloadports-03f03ace9ac4ee4e05f4ed4997430804aa8aa408.tar.gz
ports-03f03ace9ac4ee4e05f4ed4997430804aa8aa408.zip
Update BIND9 to 9.16.13.
Notes
Notes: svn path=/head/; revision=568800
Diffstat (limited to 'dns')
-rw-r--r--dns/bind916/Makefile2
-rw-r--r--dns/bind916/distinfo6
-rw-r--r--dns/bind916/files/extrapatch-bind-min-override-ttl14
-rw-r--r--dns/bind916/files/patch-configure8
-rw-r--r--dns/bind916/pkg-plist1
5 files changed, 16 insertions, 15 deletions
diff --git a/dns/bind916/Makefile b/dns/bind916/Makefile
index c53d99bf8a28..7625f9a9621d 100644
--- a/dns/bind916/Makefile
+++ b/dns/bind916/Makefile
@@ -41,7 +41,7 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools
USES= compiler:c11 cpe libedit pkgconfig ssl tar:xz
# ISC releases things like 9.8.0-P1, which our versioning doesn't like
-ISCVERSION= 9.16.12
+ISCVERSION= 9.16.13
CPE_VENDOR= isc
CPE_VERSION= ${ISCVERSION:C/-.*//}
diff --git a/dns/bind916/distinfo b/dns/bind916/distinfo
index 29951fde7de0..f8676a064949 100644
--- a/dns/bind916/distinfo
+++ b/dns/bind916/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1613395604
-SHA256 (bind-9.16.12.tar.xz) = 9914af9311fd349cab441097898d94fb28d0bfd9bf6ed04fe1f97f042644da7f
-SIZE (bind-9.16.12.tar.xz) = 5017756
+TIMESTAMP = 1616162959
+SHA256 (bind-9.16.13.tar.xz) = a54cc793fa5b69b35f610f2095760f8238dff5cfd52419f7ee1c9c227da4cc08
+SIZE (bind-9.16.13.tar.xz) = 5028340
diff --git a/dns/bind916/files/extrapatch-bind-min-override-ttl b/dns/bind916/files/extrapatch-bind-min-override-ttl
index 053fc1974329..755dc8db3166 100644
--- a/dns/bind916/files/extrapatch-bind-min-override-ttl
+++ b/dns/bind916/files/extrapatch-bind-min-override-ttl
@@ -1,6 +1,6 @@
Add the override-cache-ttl feature.
---- bin/named/config.c.orig 2021-02-04 11:35:16 UTC
+--- bin/named/config.c.orig 2021-03-11 13:20:59 UTC
+++ bin/named/config.c
@@ -180,6 +180,7 @@ options {\n\
notify-source *;\n\
@@ -10,9 +10,9 @@ Add the override-cache-ttl feature.
provide-ixfr true;\n\
qname-minimization relaxed;\n\
query-source address *;\n\
---- bin/named/server.c.orig 2021-02-04 11:35:16 UTC
+--- bin/named/server.c.orig 2021-03-11 13:20:59 UTC
+++ bin/named/server.c
-@@ -4347,6 +4347,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
+@@ -4353,6 +4353,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
}
obj = NULL;
@@ -24,7 +24,7 @@ Add the override-cache-ttl feature.
result = named_config_get(maps, "max-cache-ttl", &obj);
INSIST(result == ISC_R_SUCCESS);
view->maxcachettl = cfg_obj_asduration(obj);
---- lib/dns/include/dns/view.h.orig 2021-02-04 11:35:16 UTC
+--- lib/dns/include/dns/view.h.orig 2021-03-11 13:20:59 UTC
+++ lib/dns/include/dns/view.h
@@ -152,6 +152,7 @@ struct dns_view {
bool requestnsid;
@@ -34,9 +34,9 @@ Add the override-cache-ttl feature.
dns_ttl_t maxncachettl;
dns_ttl_t mincachettl;
dns_ttl_t minncachettl;
---- lib/dns/resolver.c.orig 2021-02-04 11:35:16 UTC
+--- lib/dns/resolver.c.orig 2021-03-11 13:20:59 UTC
+++ lib/dns/resolver.c
-@@ -6478,6 +6478,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_mes
+@@ -6477,6 +6477,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_mes
}
/*
@@ -49,7 +49,7 @@ Add the override-cache-ttl feature.
* Enforce the configure maximum cache TTL.
*/
if (rdataset->ttl > res->view->maxcachettl) {
---- lib/isccfg/namedconf.c.orig 2021-02-04 11:35:16 UTC
+--- lib/isccfg/namedconf.c.orig 2021-03-11 13:20:59 UTC
+++ lib/isccfg/namedconf.c
@@ -2047,6 +2047,7 @@ static cfg_clausedef_t view_clauses[] = {
#endif /* ifdef HAVE_LMDB */
diff --git a/dns/bind916/files/patch-configure b/dns/bind916/files/patch-configure
index 22eedf9170bf..e4ca7e96bb34 100644
--- a/dns/bind916/files/patch-configure
+++ b/dns/bind916/files/patch-configure
@@ -1,8 +1,8 @@
Fixup gssapi and db detection.
---- configure.orig 2021-02-04 11:35:16 UTC
+--- configure.orig 2021-03-11 13:20:59 UTC
+++ configure
-@@ -17701,27 +17701,9 @@ done
+@@ -17761,27 +17761,9 @@ done
# problems start to show up.
saved_libs="$LIBS"
for TRY_LIBS in \
@@ -32,7 +32,7 @@ Fixup gssapi and db detection.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5
$as_echo_n "checking linking as $TRY_LIBS... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-@@ -17764,47 +17746,7 @@ $as_echo "no" >&6; } ;;
+@@ -17824,47 +17806,7 @@ $as_echo "no" >&6; } ;;
no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;;
esac
@@ -81,7 +81,7 @@ Fixup gssapi and db detection.
DNS_GSSAPI_LIBS="$LIBS"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5
-@@ -23199,7 +23141,7 @@ $as_echo "" >&6; }
+@@ -23263,7 +23205,7 @@ $as_echo "" >&6; }
# Check other locations for includes.
# Order is important (sigh).
diff --git a/dns/bind916/pkg-plist b/dns/bind916/pkg-plist
index 4dd80c7a5edb..4fc8dbff7cad 100644
--- a/dns/bind916/pkg-plist
+++ b/dns/bind916/pkg-plist
@@ -220,6 +220,7 @@ include/isc/taskpool.h
include/isc/thread.h
include/isc/time.h
include/isc/timer.h
+include/isc/tls.h
include/isc/tm.h
include/isc/types.h
include/isc/utf8.h