mirror of
https://github.com/moparisthebest/curl
synced 2025-01-04 10:28:08 -05:00
Trial to teach runtests.pl about WinSSL.
This commit is contained in:
parent
13abfd997e
commit
da2bde9d62
@ -219,6 +219,7 @@ my $has_nss; # built with NSS
|
|||||||
my $has_yassl; # built with yassl
|
my $has_yassl; # built with yassl
|
||||||
my $has_polarssl;# built with polarssl
|
my $has_polarssl;# built with polarssl
|
||||||
my $has_axtls; # built with axTLS
|
my $has_axtls; # built with axTLS
|
||||||
|
my $has_winssl; # built with WinSSL (Schannel/SSPI)
|
||||||
|
|
||||||
my $has_shared = "unknown"; # built shared
|
my $has_shared = "unknown"; # built shared
|
||||||
|
|
||||||
@ -2280,6 +2281,10 @@ sub checksystem {
|
|||||||
$has_axtls=1;
|
$has_axtls=1;
|
||||||
$ssllib="axTLS";
|
$ssllib="axTLS";
|
||||||
}
|
}
|
||||||
|
elsif ($libcurl =~ /winssl/i) {
|
||||||
|
$has_winssl=1;
|
||||||
|
$ssllib="WinSSL";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
elsif($_ =~ /^Protocols: (.*)/i) {
|
elsif($_ =~ /^Protocols: (.*)/i) {
|
||||||
# these are the protocols compiled in to this libcurl
|
# these are the protocols compiled in to this libcurl
|
||||||
@ -2699,6 +2704,11 @@ sub singletest {
|
|||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
elsif($f eq "WinSSL") {
|
||||||
|
if($has_winssl) {
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
}
|
||||||
elsif($f eq "unittest") {
|
elsif($f eq "unittest") {
|
||||||
if($debug_build) {
|
if($debug_build) {
|
||||||
next;
|
next;
|
||||||
|
Loading…
Reference in New Issue
Block a user