'crypto' tests aren't dependent on SSL. Compiling with
--disable-crypto-auth will cause test failures, however.
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
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`;