mirror of
https://github.com/curl/curl.git
synced 2026-04-26 14:22:17 +03:00
libcurl supplies its own crypto hash functions when SSL is disabled, so
'crypto' tests aren't dependent on SSL. Compiling with --disable-crypto-auth will cause test failures, however.
This commit is contained in:
parent
d76a734043
commit
ae07fd2ba8
1 changed files with 4 additions and 3 deletions
|
|
@ -1045,9 +1045,6 @@ sub checksystem {
|
|||
if($feat =~ /SSL/i) {
|
||||
# ssl enabled
|
||||
$ssl_version=1;
|
||||
# curl doesn't list cryptographic support separately, so treat
|
||||
# it the same as SSL for the time being
|
||||
$has_crypto=1;
|
||||
}
|
||||
if($feat =~ /Largefile/i) {
|
||||
# large file support
|
||||
|
|
@ -1123,6 +1120,10 @@ sub checksystem {
|
|||
die "can't run torture tests since curl was not build with debug";
|
||||
}
|
||||
|
||||
# curl doesn't list cryptographic support separately, so assume it's
|
||||
# always available
|
||||
$has_crypto=1;
|
||||
|
||||
my $hostname=`hostname`;
|
||||
my $hosttype=`uname -a`;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue