aboutsummaryrefslogtreecommitdiffstats
path: root/dns/bind9-devel
diff options
context:
space:
mode:
authormat <mat@FreeBSD.org>2017-09-25 21:01:34 +0800
committerKoop Mast <kwm@rainbow-runner.nl>2018-02-04 05:36:20 +0800
commitc7026502b5dbce005f78834d378a11b9bb081175 (patch)
tree55ed9578075d8bcc53acba413ae57784785e6213 /dns/bind9-devel
parent4378c7e95f9b70424b389a3960a6337319baada4 (diff)
downloadfreebsd-ports-gnome-c7026502b5dbce005f78834d378a11b9bb081175.tar.gz
freebsd-ports-gnome-c7026502b5dbce005f78834d378a11b9bb081175.tar.zst
freebsd-ports-gnome-c7026502b5dbce005f78834d378a11b9bb081175.zip
Update to latest commit.
Sponsored by: Absolight
Diffstat (limited to 'dns/bind9-devel')
-rw-r--r--dns/bind9-devel/Makefile4
-rw-r--r--dns/bind9-devel/distinfo6
-rw-r--r--dns/bind9-devel/files/extrapatch-bind-min-override-ttl12
-rw-r--r--dns/bind9-devel/files/patch-configure8
4 files changed, 15 insertions, 15 deletions
diff --git a/dns/bind9-devel/Makefile b/dns/bind9-devel/Makefile
index 142925b205c7..245ad2cdfdeb 100644
--- a/dns/bind9-devel/Makefile
+++ b/dns/bind9-devel/Makefile
@@ -31,8 +31,8 @@ LICENSE= MPL
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
# ISC releases things like 9.8.0-P1, which our versioning doesn't like
-ISCVERSION= 9.12.0a.2017.09.18
-HASH= 0bcb8b0
+ISCVERSION= 9.12.0a.2017.09.23
+HASH= 2919a6d
USES= cpe libedit
diff --git a/dns/bind9-devel/distinfo b/dns/bind9-devel/distinfo
index a92c326d8970..cbf36124e92c 100644
--- a/dns/bind9-devel/distinfo
+++ b/dns/bind9-devel/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1505729393
-SHA256 (bind9-0bcb8b0.tar.gz) = 0f2e2eb97c8b3207e46a0d5e1d0954ede2714b026fd97b0991bcb2c3180ecc14
-SIZE (bind9-0bcb8b0.tar.gz) = 11694132
+TIMESTAMP = 1506342038
+SHA256 (bind9-2919a6d.tar.gz) = 360cb4f842a6fbbffee4fd703452a5f48189c80ab7906a6305314dd6f18f784d
+SIZE (bind9-2919a6d.tar.gz) = 11701389
diff --git a/dns/bind9-devel/files/extrapatch-bind-min-override-ttl b/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
index 10a99c26ccce..776aba12de81 100644
--- a/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
+++ b/dns/bind9-devel/files/extrapatch-bind-min-override-ttl
@@ -1,4 +1,4 @@
---- bin/named/config.c.orig 2017-09-18 04:28:39 UTC
+--- bin/named/config.c.orig 2017-09-23 04:57:27 UTC
+++ bin/named/config.c
@@ -179,12 +179,14 @@ options {\n\
max-recursion-queries 75;\n\
@@ -7,7 +7,7 @@
+ min-cache-ttl 0; /* no minimal, zero is allowed */\n\
# min-roots <obsolete>;\n\
minimal-any false;\n\
- minimal-responses true;\n\
+ minimal-responses no-auth-recursive;\n\
notify-source *;\n\
notify-source-v6 *;\n\
nsec3-test-zone no;\n\
@@ -15,7 +15,7 @@
provide-ixfr true;\n\
query-source address *;\n\
query-source-v6 address *;\n\
---- bin/named/server.c.orig 2017-09-18 04:28:39 UTC
+--- bin/named/server.c.orig 2017-09-23 04:57:27 UTC
+++ bin/named/server.c
@@ -4090,6 +4090,16 @@ configure_view(dns_view_t *view, dns_vie
}
@@ -34,7 +34,7 @@
result = named_config_get(maps, "max-cache-ttl", &obj);
INSIST(result == ISC_R_SUCCESS);
view->maxcachettl = cfg_obj_asuint32(obj);
---- lib/dns/include/dns/view.h.orig 2017-09-18 04:28:39 UTC
+--- lib/dns/include/dns/view.h.orig 2017-09-23 04:57:27 UTC
+++ lib/dns/include/dns/view.h
@@ -145,6 +145,8 @@ struct dns_view {
isc_boolean_t requestnsid;
@@ -45,7 +45,7 @@
dns_ttl_t maxncachettl;
isc_uint32_t nta_lifetime;
isc_uint32_t nta_recheck;
---- lib/dns/resolver.c.orig 2017-09-18 04:28:39 UTC
+--- lib/dns/resolver.c.orig 2017-09-23 04:57:27 UTC
+++ lib/dns/resolver.c
@@ -5751,6 +5751,18 @@ cache_name(fetchctx_t *fctx, dns_name_t
}
@@ -66,7 +66,7 @@
* Enforce the configure maximum cache TTL.
*/
if (rdataset->ttl > res->view->maxcachettl)
---- lib/isccfg/namedconf.c.orig 2017-09-18 04:28:39 UTC
+--- lib/isccfg/namedconf.c.orig 2017-09-23 04:57:27 UTC
+++ lib/isccfg/namedconf.c
@@ -1918,6 +1918,8 @@ view_clauses[] = {
{ "max-acache-size", &cfg_type_sizenodefault,
diff --git a/dns/bind9-devel/files/patch-configure b/dns/bind9-devel/files/patch-configure
index a9503890c0dc..5f253ff29f75 100644
--- a/dns/bind9-devel/files/patch-configure
+++ b/dns/bind9-devel/files/patch-configure
@@ -1,6 +1,6 @@
---- configure.orig 2017-09-18 04:28:39 UTC
+--- configure.orig 2017-09-23 04:57:27 UTC
+++ configure
-@@ -14414,27 +14414,9 @@ done
+@@ -14417,27 +14417,9 @@ done
# problems start to show up.
saved_libs="$LIBS"
for TRY_LIBS in \
@@ -30,7 +30,7 @@
{ $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
-@@ -14477,47 +14459,7 @@ $as_echo "no" >&6; } ;;
+@@ -14480,47 +14462,7 @@ $as_echo "no" >&6; } ;;
no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;;
esac
@@ -79,7 +79,7 @@
DNS_GSSAPI_LIBS="$LIBS"
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5
-@@ -22987,7 +22929,7 @@ $as_echo "" >&6; }
+@@ -23029,7 +22971,7 @@ $as_echo "" >&6; }
# Check other locations for includes.
# Order is important (sigh).
* - Upgrade gnupg to 2.0.1. Old stable version (1.4.6) was repocopiedkuriyama2006-12-211-1/+2 * Update to KDE 3.5.5 / KOffice 1.6.1lofi2006-12-201-3/+3 * KDE 3.5.4 / KOffice 1.5.2lofi2006-09-131-3/+3 * Update to KDE 3.5.3lofi2006-06-063-4/+23 * Remove USE_REINPLACE from ports starting with Medwin2006-05-111-1/+0 * Chase gmp library and bump PORTREVISION.ale2006-05-101-1/+2 * Update to KDE 3.5.2lofi2006-03-314-69/+5 * Conversion to a single libtool environment.ade2006-02-232-1/+28 * Update to KDE 3.5.1.lofi2006-02-015-182/+67 * Update to KDE 3.5.0lofi2006-01-096-70/+305 * Chase shlib version bump of net-snmp.kuriyama2005-11-301-0/+1 * Update to KDE 3.4.3 / KOffice 1.4.2lofi2005-11-051-2/+2 * Update to KDE 3.4.2 / KOffice 1.4.1lofi2005-08-011-2/+2 * Update to KDE 3.4.1lofi2005-06-26