2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-04 00:25:29 +00:00

4639. [bug] Fix a regression in --with-tuning reporting introduced

by change 4488. [RT #45396]
This commit is contained in:
Michał Kępień
2017-06-16 09:07:36 +02:00
parent f62eb5f112
commit 77a95c35b9
3 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
4639. [bug] Fix a regression in --with-tuning reporting introduced
by change 4488. [RT #45396]
4638. [bug] Reloading or reconfiguring named could fail on 4638. [bug] Reloading or reconfiguring named could fail on
some platforms when LMDB was in use. [RT #45203] some platforms when LMDB was in use. [RT #45203]

2
configure vendored
View File

@@ -25899,7 +25899,7 @@ report() {
echo " Mutex lock type: $locktype" echo " Mutex lock type: $locktype"
fi fi
fi fi
test "large" = "large" && echo " Large-system tuning (--with-tuning)" test "large" = "$use_tuning" && echo " Large-system tuning (--with-tuning)"
test "no" = "$use_dnstap" || \ test "no" = "$use_dnstap" || \
echo " Allow 'dnstap' packet logging (--enable-dnstap)" echo " Allow 'dnstap' packet logging (--enable-dnstap)"
test "no" = "$use_geoip" || echo " GeoIP access control (--with-geoip)" test "no" = "$use_geoip" || echo " GeoIP access control (--with-geoip)"

View File

@@ -5316,7 +5316,7 @@ report() {
echo " Mutex lock type: $locktype" echo " Mutex lock type: $locktype"
fi fi
fi fi
test "large" = "large" && echo " Large-system tuning (--with-tuning)" test "large" = "$use_tuning" && echo " Large-system tuning (--with-tuning)"
test "no" = "$use_dnstap" || \ test "no" = "$use_dnstap" || \
echo " Allow 'dnstap' packet logging (--enable-dnstap)" echo " Allow 'dnstap' packet logging (--enable-dnstap)"
test "no" = "$use_geoip" || echo " GeoIP access control (--with-geoip)" test "no" = "$use_geoip" || echo " GeoIP access control (--with-geoip)"