Update to 9.11.24
Changes: https://downloads.isc.org/isc/bind9/9.11.24/RELEASE-NOTES-bind-9.11.24.html
This commit is contained in:
parent
724c6e1bc8
commit
bbaf30d63f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=553338
5 changed files with 18 additions and 17 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
PORTNAME= bind
|
PORTNAME= bind
|
||||||
PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/}
|
PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/}
|
||||||
PORTREVISION= 1
|
PORTREVISION= 0
|
||||||
CATEGORIES= dns net
|
CATEGORIES= dns net
|
||||||
MASTER_SITES= ISC/bind9/${ISCVERSION}
|
MASTER_SITES= ISC/bind9/${ISCVERSION}
|
||||||
PKGNAMESUFFIX= 911
|
PKGNAMESUFFIX= 911
|
||||||
|
@ -24,7 +24,7 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools
|
||||||
USES= cpe libedit pkgconfig
|
USES= cpe libedit pkgconfig
|
||||||
|
|
||||||
# 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.11.23
|
ISCVERSION= 9.11.24
|
||||||
|
|
||||||
CPE_VENDOR= isc
|
CPE_VENDOR= isc
|
||||||
CPE_VERSION= ${ISCVERSION:C/-.*//}
|
CPE_VERSION= ${ISCVERSION:C/-.*//}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
TIMESTAMP = 1600870608
|
TIMESTAMP = 1603640264
|
||||||
SHA256 (bind-9.11.23.tar.gz) = 6e194d2f2a4c9fc18f5989b7a28b71161d1703c0d9b2c0fb8c0a545cc05ad2e1
|
SHA256 (bind-9.11.24.tar.gz) = f261587c5d37c7f14e8393547c4556faefa701a646930f1b6408d71519a30428
|
||||||
SIZE (bind-9.11.23.tar.gz) = 8257821
|
SIZE (bind-9.11.24.tar.gz) = 8273237
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- Add the min-cache-ttl config knob.
|
- Add the min-cache-ttl config knob.
|
||||||
- Add the override-cache-ttl config knob.
|
- Add the override-cache-ttl config knob.
|
||||||
|
|
||||||
--- bin/named/config.c.orig 2020-06-10 18:00:37 UTC
|
--- bin/named/config.c.orig 2020-10-13 11:00:08 UTC
|
||||||
+++ bin/named/config.c
|
+++ bin/named/config.c
|
||||||
@@ -182,6 +182,8 @@ options {\n\
|
@@ -182,6 +182,8 @@ options {\n\
|
||||||
" max-acache-size 16M;\n\
|
" max-acache-size 16M;\n\
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
max-clients-per-query 100;\n\
|
max-clients-per-query 100;\n\
|
||||||
max-ncache-ttl 10800; /* 3 hours */\n\
|
max-ncache-ttl 10800; /* 3 hours */\n\
|
||||||
max-recursion-depth 7;\n\
|
max-recursion-depth 7;\n\
|
||||||
--- bin/named/server.c.orig 2020-06-10 18:00:37 UTC
|
--- bin/named/server.c.orig 2020-10-13 11:00:08 UTC
|
||||||
+++ bin/named/server.c
|
+++ bin/named/server.c
|
||||||
@@ -3720,6 +3720,16 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
|
@@ -3720,6 +3720,16 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
result = ns_config_get(maps, "max-cache-ttl", &obj);
|
result = ns_config_get(maps, "max-cache-ttl", &obj);
|
||||||
INSIST(result == ISC_R_SUCCESS);
|
INSIST(result == ISC_R_SUCCESS);
|
||||||
view->maxcachettl = cfg_obj_asuint32(obj);
|
view->maxcachettl = cfg_obj_asuint32(obj);
|
||||||
--- lib/dns/include/dns/view.h.orig 2020-06-10 18:00:37 UTC
|
--- lib/dns/include/dns/view.h.orig 2020-10-13 11:00:08 UTC
|
||||||
+++ lib/dns/include/dns/view.h
|
+++ lib/dns/include/dns/view.h
|
||||||
@@ -152,6 +152,8 @@ struct dns_view {
|
@@ -152,6 +152,8 @@ struct dns_view {
|
||||||
bool requestnsid;
|
bool requestnsid;
|
||||||
|
@ -42,9 +42,9 @@
|
||||||
dns_ttl_t maxncachettl;
|
dns_ttl_t maxncachettl;
|
||||||
uint32_t nta_lifetime;
|
uint32_t nta_lifetime;
|
||||||
uint32_t nta_recheck;
|
uint32_t nta_recheck;
|
||||||
--- lib/dns/resolver.c.orig 2020-06-10 18:00:37 UTC
|
--- lib/dns/resolver.c.orig 2020-10-13 11:00:08 UTC
|
||||||
+++ lib/dns/resolver.c
|
+++ lib/dns/resolver.c
|
||||||
@@ -5549,6 +5549,18 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
|
@@ -5572,6 +5572,18 @@ cache_name(fetchctx_t *fctx, dns_message_t *rmessage,
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
* 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-06-10 18:00:37 UTC
|
--- lib/isccfg/namedconf.c.orig 2020-10-13 11:00:08 UTC
|
||||||
+++ lib/isccfg/namedconf.c
|
+++ lib/isccfg/namedconf.c
|
||||||
@@ -1773,6 +1773,8 @@ view_clauses[] = {
|
@@ -1773,6 +1773,8 @@ view_clauses[] = {
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
- Make sure only json-c is detected.
|
- Make sure only json-c is detected.
|
||||||
- Cleanup the BDB discovery code to find more recent versions.
|
- Cleanup the BDB discovery code to find more recent versions.
|
||||||
|
|
||||||
--- configure.orig 2020-07-03 13:08:06 UTC
|
--- configure.orig 2020-10-13 11:00:08 UTC
|
||||||
+++ configure
|
+++ configure
|
||||||
@@ -15655,27 +15655,9 @@ done
|
@@ -15692,27 +15692,9 @@ done
|
||||||
# problems start to show up.
|
# problems start to show up.
|
||||||
saved_libs="$LIBS"
|
saved_libs="$LIBS"
|
||||||
for TRY_LIBS in \
|
for TRY_LIBS in \
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5
|
||||||
$as_echo_n "checking linking as $TRY_LIBS... " >&6; }
|
$as_echo_n "checking linking as $TRY_LIBS... " >&6; }
|
||||||
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
@@ -15718,47 +15700,7 @@ $as_echo "no" >&6; } ;;
|
@@ -15755,47 +15737,7 @@ $as_echo "no" >&6; } ;;
|
||||||
no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;;
|
no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@
|
||||||
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
|
||||||
@@ -18595,7 +18537,7 @@ case "$use_libjson" in
|
@@ -18662,7 +18604,7 @@ case "$use_libjson" in
|
||||||
auto|yes)
|
auto|yes)
|
||||||
for d in /usr /usr/local /opt/local
|
for d in /usr /usr/local /opt/local
|
||||||
do
|
do
|
||||||
|
@ -93,7 +93,7 @@
|
||||||
then
|
then
|
||||||
if test ${d} != /usr
|
if test ${d} != /usr
|
||||||
then
|
then
|
||||||
@@ -18603,29 +18545,16 @@ case "$use_libjson" in
|
@@ -18670,29 +18612,16 @@ case "$use_libjson" in
|
||||||
LIBS="$LIBS -L${d}/lib"
|
LIBS="$LIBS -L${d}/lib"
|
||||||
fi
|
fi
|
||||||
have_libjson="yes"
|
have_libjson="yes"
|
||||||
|
@ -124,7 +124,7 @@
|
||||||
have_libjson_c="yes"
|
have_libjson_c="yes"
|
||||||
else
|
else
|
||||||
as_fn_error $? "$use_libjson/include/json{,-c}/json.h not found." "$LINENO" 5
|
as_fn_error $? "$use_libjson/include/json{,-c}/json.h not found." "$LINENO" 5
|
||||||
@@ -24839,7 +24768,7 @@ $as_echo "" >&6; }
|
@@ -24967,7 +24896,7 @@ $as_echo "" >&6; }
|
||||||
# Check other locations for includes.
|
# Check other locations for includes.
|
||||||
# Order is important (sigh).
|
# Order is important (sigh).
|
||||||
|
|
||||||
|
|
|
@ -132,6 +132,7 @@ include/isc/bind9.h
|
||||||
include/isc/boolean.h
|
include/isc/boolean.h
|
||||||
include/isc/buffer.h
|
include/isc/buffer.h
|
||||||
include/isc/bufferlist.h
|
include/isc/bufferlist.h
|
||||||
|
include/isc/cmocka.h
|
||||||
include/isc/commandline.h
|
include/isc/commandline.h
|
||||||
include/isc/condition.h
|
include/isc/condition.h
|
||||||
include/isc/counter.h
|
include/isc/counter.h
|
||||||
|
|
Loading…
Reference in a new issue