]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Remove remnants of the --with-cc-alg option
authorMichał Kępień <michal@isc.org>
Tue, 15 Oct 2019 19:57:58 +0000 (21:57 +0200)
committerMichał Kępień <michal@isc.org>
Tue, 15 Oct 2019 19:57:58 +0000 (21:57 +0200)
Commit afa81ee4e4e863fa646177947c55e8c6b1475f47 omitted some spots in
the source tree which are still referencing the removed --with-cc-alg
"configure" option.  Make sure the latter is removed completely.

configure
configure.ac
win32utils/Configure

index 899e0536c7c483799aaa7fef4c10757bf39f8cd1..767c7c2d12e570f4d9966038c4485e029a426b8a 100755 (executable)
--- a/configure
+++ b/configure
@@ -25647,9 +25647,6 @@ report() {
            echo "    Allow 'dnstap' packet logging (--enable-dnstap)"
     test -z "$MAXMINDDB_LIBS" || echo "    GeoIP2 access control (--enable-geoip)"
     test "no" = "$use_gssapi" || echo "    GSS-API (--with-gssapi)"
-    if test "yes" = "$enable_full_report" -o "aes" != "$with_cc_alg"; then
-       echo "        Algorithm: $with_cc_alg"
-    fi
 
     # these lines are only printed if run with --enable-full-report
     if test "yes" = "$enable_full_report"; then
index e626585aee64f113b8b871ff572cd8094749ee40..17b09511b72e5a06bd4224e7a32e157ed13447a8 100644 (file)
@@ -2883,9 +2883,6 @@ report() {
            echo "    Allow 'dnstap' packet logging (--enable-dnstap)"
     test -z "$MAXMINDDB_LIBS" || echo "    GeoIP2 access control (--enable-geoip)"
     test "no" = "$use_gssapi" || echo "    GSS-API (--with-gssapi)"
-    if test "yes" = "$enable_full_report" -o "aes" != "$with_cc_alg"; then
-       echo "        Algorithm: $with_cc_alg"
-    fi
 
     # these lines are only printed if run with --enable-full-report
     if test "yes" = "$enable_full_report"; then
index efed78918b0f2d15aca525438c45c4463d59d92a..cd97fd760e627ee2ad8a8e21bce915474c5235ce 100644 (file)
@@ -361,7 +361,6 @@ my @enablelist = ("developer",
 # with-xxx/without-xxx
 
 my @withlist = ("aes",
-                "cc-alg",
                 "cross-compile",
                 "ecdsa",
                 "eddsa",
@@ -421,7 +420,6 @@ my @help = (
 "  with-openssl[=PATH]   build with OpenSSL yes|path (mandatory)\n",
 "  with-pkcs11[=PATH]    build with PKCS#11 support yes|no|provider-path\n",
 "  with-eddsa            crypto EDDSA yes|all|no\n",
-"  with-cc-alg           choose the algorithm for cookies aes|sha1|sha256\n",
 "  with-gssapi[=PATH]    build with MIT KfW GSSAPI yes|no|path\n",
 "  with-libxml2[=PATH]   build with libxml2 library yes|no|path\n",
 "  with-geoip2[=PATH]    build with GeoIP2 support yes|no|path\n",
@@ -470,7 +468,6 @@ my $pkcs11_path = "unknown";
 my $use_eddsa = "auto";
 my $use_ed448 = "auto";
 my $use_aes = "auto";
-my $cookie_algorithm = "aes";
 my $use_gssapi = "no";
 my $validation_default = "auto";
 my $gssapi_path = "C:\\Program\ Files\\MIT\\Kerberos\\";
@@ -762,8 +759,6 @@ sub mywith {
         } elsif ($val =~ /^yes$/i) {
             $use_aes = "yes";
         }
-    } elsif ($key =~ /^cc-alg$/i) {
-        $cookie_algorithm = $val;
     } elsif ($key =~ /^gssapi$/i) {
         if ($val !~ /^no$/i) {
             $use_gssapi = "yes";
@@ -942,7 +937,6 @@ if ($verbose) {
     } else {
         print "querytrace: disabled\n";
     }
-    print "cookie algorithm: $cookie_algorithm\n";
     print "openssl-path: $openssl_path\n";
     if ($use_tests eq "yes") {
         print "tests: enabled\n";
@@ -2838,7 +2832,6 @@ exit 0;
 #  --with-ecdsa supported
 #  --with-eddsa supported
 #  --with-aes supported
-#  --with-cc-alg supported
 #  --with-randomdev not supported on WIN32 (makes no sense)
 #  --with-geoip2 supported
 #  --with-gssapi supported with MIT (K)erberos (f)or (W)indows