]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
4639. [bug] Fix a regression in --with-tuning reporting introduced
authorMichał Kępień <michal@isc.org>
Fri, 16 Jun 2017 07:07:36 +0000 (09:07 +0200)
committerMichał Kępień <michal@isc.org>
Fri, 23 Jun 2017 06:18:20 +0000 (08:18 +0200)
by change 4488. [RT #45396]

CHANGES
configure
configure.in

diff --git a/CHANGES b/CHANGES
index fa411735533cf47da6d2b3838ff94e861e2a1349..f33c15605f97a5300f71ab39b58a664c0ea25f2f 100644 (file)
--- 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]
 
index a40b3a75882c81fbb9636ce9e06e5a7b8a1c8a62..2cc70500df67dbf4fb486e9beb88b01dd1e9032a 100755 (executable)
--- 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)"
index 737b1c12100e838d0f8fe2e22a7b051ef14c4992..1845db51627c3d779ca09e1a4f23654d6549d526 100644 (file)
@@ -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)"