autotools: update references to deleted crypt-auth option

Delete leftovers of the `crypt-auth` `./configure` option and
add the new ones that replaced them.

Follow-up to e92edfbef6 #11490

Reviewed-by: Daniel Stenberg
Closes #12194
This commit is contained in:
Viktor Szakats 2023-10-25 03:33:16 +00:00
parent 47f5b1a37f
commit 6ec70a9dd3
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201
2 changed files with 12 additions and 2 deletions

View File

@ -524,7 +524,12 @@ disabling support for some feature:
- `--disable-alt-svc` (HTTP Alt-Svc) - `--disable-alt-svc` (HTTP Alt-Svc)
- `--disable-ares` (the C-ARES DNS library) - `--disable-ares` (the C-ARES DNS library)
- `--disable-cookies` (HTTP cookies) - `--disable-cookies` (HTTP cookies)
- `--disable-crypto-auth` (cryptographic authentication) - `--disable-basic-auth` (cryptographic authentication)
- `--disable-bearer-auth` (cryptographic authentication)
- `--disable-digest-auth` (cryptographic authentication)
- `--disable-kerberos-auth` (cryptographic authentication)
- `--disable-negotiate-auth` (cryptographic authentication)
- `--disable-aws` (cryptographic authentication)
- `--disable-dateparse` (date parsing for time conditionals) - `--disable-dateparse` (date parsing for time conditionals)
- `--disable-dnsshuffle` (internal server load spreading) - `--disable-dnsshuffle` (internal server load spreading)
- `--disable-doh` (DNS-over-HTTP) - `--disable-doh` (DNS-over-HTTP)

View File

@ -58,7 +58,12 @@ my %defaulton = (
'threaded-resolver' => 1, 'threaded-resolver' => 1,
'pthreads' => 1, 'pthreads' => 1,
'verbose' => 1, 'verbose' => 1,
'crypto-auth' => 1, 'basic-auth' => 1,
'bearer-auth' => 1,
'digest-auth' => 1,
'kerberos-auth' => 1,
'negotiate-auth' => 1,
'aws' => 1,
'ntlm' => 1, 'ntlm' => 1,
'ntlm-wb' => 1, 'ntlm-wb' => 1,
'tls-srp' => 1, 'tls-srp' => 1,