mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Update to 9.16.9.
Changes: https://downloads.isc.org/isc/bind9/9.16.9/doc/arm/html/notes.html#notes-for-bind-9-16-9
This commit is contained in:
parent
ad12af27b6
commit
2bc4786f94
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=556504
4 changed files with 13 additions and 13 deletions
|
@ -41,7 +41,7 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools
|
||||||
|
|
||||||
USES= compiler:c11 cpe libedit pkgconfig ssl tar:xz
|
USES= compiler:c11 cpe libedit pkgconfig ssl tar:xz
|
||||||
# ISC releases things like 9.8.0-P1, which our versioning doesn't like
|
# ISC releases things like 9.8.0-P1, which our versioning doesn't like
|
||||||
ISCVERSION= 9.16.8
|
ISCVERSION= 9.16.9
|
||||||
|
|
||||||
CPE_VENDOR= isc
|
CPE_VENDOR= isc
|
||||||
CPE_VERSION= ${ISCVERSION:C/-.*//}
|
CPE_VERSION= ${ISCVERSION:C/-.*//}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
TIMESTAMP = 1603640347
|
TIMESTAMP = 1606573953
|
||||||
SHA256 (bind-9.16.8.tar.xz) = 9e9b9c563692be86ec41f670f6b70e26c14e72445c742d7b5eb4db7d2b5e8d31
|
SHA256 (bind-9.16.9.tar.xz) = bcb292c4d738a46e3cbcb8afaa25ecf54f77652fa575135da9a2a1d525304a5a
|
||||||
SIZE (bind-9.16.8.tar.xz) = 3253744
|
SIZE (bind-9.16.9.tar.xz) = 3260964
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Add the override-cache-ttl feature.
|
Add the override-cache-ttl feature.
|
||||||
|
|
||||||
--- bin/named/config.c.orig 2020-10-13 08:41:40 UTC
|
--- bin/named/config.c.orig 2020-11-16 14:44:37 UTC
|
||||||
+++ bin/named/config.c
|
+++ bin/named/config.c
|
||||||
@@ -179,6 +179,7 @@ options {\n\
|
@@ -179,6 +179,7 @@ options {\n\
|
||||||
notify-source *;\n\
|
notify-source *;\n\
|
||||||
|
@ -10,9 +10,9 @@ Add the override-cache-ttl feature.
|
||||||
provide-ixfr true;\n\
|
provide-ixfr true;\n\
|
||||||
qname-minimization relaxed;\n\
|
qname-minimization relaxed;\n\
|
||||||
query-source address *;\n\
|
query-source address *;\n\
|
||||||
--- bin/named/server.c.orig 2020-10-13 08:41:40 UTC
|
--- bin/named/server.c.orig 2020-11-16 14:44:37 UTC
|
||||||
+++ bin/named/server.c
|
+++ bin/named/server.c
|
||||||
@@ -4341,6 +4341,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
|
@@ -4344,6 +4344,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
|
||||||
}
|
}
|
||||||
|
|
||||||
obj = NULL;
|
obj = NULL;
|
||||||
|
@ -24,7 +24,7 @@ Add the override-cache-ttl feature.
|
||||||
result = named_config_get(maps, "max-cache-ttl", &obj);
|
result = named_config_get(maps, "max-cache-ttl", &obj);
|
||||||
INSIST(result == ISC_R_SUCCESS);
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
view->maxcachettl = cfg_obj_asduration(obj);
|
view->maxcachettl = cfg_obj_asduration(obj);
|
||||||
--- lib/dns/include/dns/view.h.orig 2020-10-13 08:41:40 UTC
|
--- lib/dns/include/dns/view.h.orig 2020-11-16 14:44:37 UTC
|
||||||
+++ lib/dns/include/dns/view.h
|
+++ lib/dns/include/dns/view.h
|
||||||
@@ -152,6 +152,7 @@ struct dns_view {
|
@@ -152,6 +152,7 @@ struct dns_view {
|
||||||
bool requestnsid;
|
bool requestnsid;
|
||||||
|
@ -34,9 +34,9 @@ Add the override-cache-ttl feature.
|
||||||
dns_ttl_t maxncachettl;
|
dns_ttl_t maxncachettl;
|
||||||
dns_ttl_t mincachettl;
|
dns_ttl_t mincachettl;
|
||||||
dns_ttl_t minncachettl;
|
dns_ttl_t minncachettl;
|
||||||
--- lib/dns/resolver.c.orig 2020-10-13 08:41:40 UTC
|
--- lib/dns/resolver.c.orig 2020-11-16 14:44:37 UTC
|
||||||
+++ lib/dns/resolver.c
|
+++ lib/dns/resolver.c
|
||||||
@@ -6273,6 +6273,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_mes
|
@@ -6274,6 +6274,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.
|
* Enforce the configure maximum cache TTL.
|
||||||
*/
|
*/
|
||||||
if (rdataset->ttl > res->view->maxcachettl) {
|
if (rdataset->ttl > res->view->maxcachettl) {
|
||||||
--- lib/isccfg/namedconf.c.orig 2020-10-13 08:41:40 UTC
|
--- lib/isccfg/namedconf.c.orig 2020-11-16 14:44:37 UTC
|
||||||
+++ lib/isccfg/namedconf.c
|
+++ lib/isccfg/namedconf.c
|
||||||
@@ -1990,6 +1990,7 @@ static cfg_clausedef_t view_clauses[] = {
|
@@ -1990,6 +1990,7 @@ static cfg_clausedef_t view_clauses[] = {
|
||||||
#endif /* ifdef HAVE_LMDB */
|
#endif /* ifdef HAVE_LMDB */
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Fixup gssapi and db detection.
|
Fixup gssapi and db detection.
|
||||||
|
|
||||||
--- configure.orig 2020-10-13 08:41:40 UTC
|
--- configure.orig 2020-11-16 14:44:37 UTC
|
||||||
+++ configure
|
+++ configure
|
||||||
@@ -17698,27 +17698,9 @@ done
|
@@ -17698,27 +17698,9 @@ done
|
||||||
# problems start to show up.
|
# problems start to show up.
|
||||||
|
@ -81,7 +81,7 @@ Fixup gssapi and db detection.
|
||||||
DNS_GSSAPI_LIBS="$LIBS"
|
DNS_GSSAPI_LIBS="$LIBS"
|
||||||
|
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5
|
||||||
@@ -23207,7 +23149,7 @@ $as_echo "" >&6; }
|
@@ -23220,7 +23162,7 @@ $as_echo "" >&6; }
|
||||||
# Check other locations for includes.
|
# Check other locations for includes.
|
||||||
# Order is important (sigh).
|
# Order is important (sigh).
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue