From 6ec70a9dd305e17b017f1283a034dfa1c03bbd7c Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 25 Oct 2023 03:33:16 +0000 Subject: [PATCH] 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 e92edfbef64448ef461117769881f3ed776dec4e #11490 Reviewed-by: Daniel Stenberg Closes #12194 --- docs/INSTALL.md | 7 ++++++- scripts/ciconfig.pl | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 7e3a2698d1..8c38aa9bb6 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -524,7 +524,12 @@ disabling support for some feature: - `--disable-alt-svc` (HTTP Alt-Svc) - `--disable-ares` (the C-ARES DNS library) - `--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-dnsshuffle` (internal server load spreading) - `--disable-doh` (DNS-over-HTTP) diff --git a/scripts/ciconfig.pl b/scripts/ciconfig.pl index 7c31f8e4a0..e232e3e5e6 100755 --- a/scripts/ciconfig.pl +++ b/scripts/ciconfig.pl @@ -58,7 +58,12 @@ my %defaulton = ( 'threaded-resolver' => 1, 'pthreads' => 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-wb' => 1, 'tls-srp' => 1, -- 2.47.3