Report information
The Basics
Id:
45396
Status:
resolved
Priority:
Medium/Medium
Queue:

BugTracker
Version Fixed:
9.11.2, 9.12.0
Version Found:
(no value)
Versions Affected:
(no value)
Versions Planned:
(no value)
Priority:
P3 Low
Severity:
S3 Low
CVSS Score:
(no value)
CVE ID:
(no value)
Component:
BIND Infrastructure
Area:
bug

Dates
Created:Fri, 16 Jun 2017 03:30:13 -0400
Updated:Fri, 28 Jul 2017 23:02:39 -0400
Closed:Fri, 23 Jun 2017 02:34:17 -0400



This bug tracker is no longer active.

Please go to our Gitlab to submit issues (both feature requests and bug reports) for active projects maintained by Internet Systems Consortium (ISC).

Due to security and confidentiality requirements, full access is limited to the primary maintainers.

Subject: --with-tuning is incorrectly reported in ./configure summary
The --with-tuning ./configure option is incorrectly reported in the configuration summary: it is always listed as an enabled feature due to an accidental change to configure{,.in} in 8d6fefac31.
Suggested fix against master attached, please review. This patch needs backporting to 9.11. 9.10 is not affected, 9.9 does not support --with-tuning at all.
Subject: configure-with-tuning.patch
diff --git a/CHANGES b/CHANGES index 8b18cf2b26..3e2037ec48 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 a40b3a7588..2cc70500df 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 737b1c1210..1845db5162 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)"
looks fine. commit.
Fixed in 9.11.2.
4639. [bug] Fix a regression in --with-tuning reporting introduced by change 4488. [RT #45396] Also fixed in 9.12.0.