From: Michał Kępień Date: Fri, 16 Jun 2017 07:07:36 +0000 (+0200) Subject: 4639. [bug] Fix a regression in --with-tuning reporting introduced X-Git-Tag: v9.12.0a1~240 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=77a95c35b9a7d030d14effa62bca3855e0a7f75d;p=thirdparty%2Fbind9.git 4639. [bug] Fix a regression in --with-tuning reporting introduced by change 4488. [RT #45396] --- diff --git a/CHANGES b/CHANGES index 8b18cf2b26c..3e2037ec48a 100644 --- a/CHANGES +++ b/CHANGES @@ -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 some platforms when LMDB was in use. [RT #45203] diff --git a/configure b/configure index a40b3a75882..2cc70500df6 100755 --- a/configure +++ b/configure @@ -25899,7 +25899,7 @@ report() { echo " Mutex lock type: $locktype" 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" || \ echo " Allow 'dnstap' packet logging (--enable-dnstap)" test "no" = "$use_geoip" || echo " GeoIP access control (--with-geoip)" diff --git a/configure.in b/configure.in index 737b1c12100..1845db51627 100644 --- a/configure.in +++ b/configure.in @@ -5316,7 +5316,7 @@ report() { echo " Mutex lock type: $locktype" 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" || \ echo " Allow 'dnstap' packet logging (--enable-dnstap)" test "no" = "$use_geoip" || echo " GeoIP access control (--with-geoip)"