mirror of
https://github.com/curl/curl.git
synced 2026-08-02 16:00:28 +03:00
tests: Made the crypto test feature usable
This feature specifies the availability of cryptographic authentication, which can be disabled at compile-time
This commit is contained in:
parent
184c3e2d37
commit
4b4e8a5853
9 changed files with 15 additions and 8 deletions
|
|
@ -2403,6 +2403,8 @@ sub checksystem {
|
|||
if($feat =~ /NTLM/i) {
|
||||
# NTLM enabled
|
||||
$has_ntlm=1;
|
||||
# Use this as a proxy for any cryptographic authentication
|
||||
$has_crypto=1;
|
||||
}
|
||||
if($feat =~ /NTLM_WB/i) {
|
||||
# NTLM delegation to winbind daemon ntlm_auth helper enabled
|
||||
|
|
@ -2513,10 +2515,6 @@ sub checksystem {
|
|||
$has_shared = `sh $CURLCONFIG --built-shared`;
|
||||
chomp $has_shared;
|
||||
|
||||
# curl doesn't list cryptographic support separately, so assume it's
|
||||
# always available
|
||||
$has_crypto=1;
|
||||
|
||||
my $hostname=join(' ', runclientoutput("hostname"));
|
||||
my $hosttype=join(' ', runclientoutput("uname -a"));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue