mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 12:22:05 -04:00
Remove remnants of the --with-cc-alg option
Commit afa81ee4e4 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.
This commit is contained in:
parent
2007a7d2db
commit
428dcf3b49
3 changed files with 0 additions and 13 deletions
3
configure
vendored
3
configure
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue