]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
autotools: update references to deleted `crypt-auth` option
authorViktor Szakats <commit@vsz.me>
Wed, 25 Oct 2023 03:33:16 +0000 (03:33 +0000)
committerViktor Szakats <commit@vsz.me>
Wed, 25 Oct 2023 12:45:43 +0000 (12:45 +0000)
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
scripts/ciconfig.pl

index 7e3a2698d1da42ef2cd6a9102af7db96443f235d..8c38aa9bb6a498ae63400c3f2dc9f7b60d36b3aa 100644 (file)
@@ -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)
index 7c31f8e4a0a966955b8e26451d2d9db2e533f375..e232e3e5e6f12b73a84eb76b7f87ab96fac7a3a3 100755 (executable)
@@ -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,