runtests: accecpt 'quictls' as OpenSSL compatible

And set the "OpenSSL" feature.

Follow-up to 86d4a4124e

Closes #14850
This commit is contained in:
Daniel Stenberg 2024-09-10 14:46:40 +02:00
parent 28ca199d89
commit 31be4d5bf0
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -576,6 +576,11 @@ sub checksystemfeatures {
$feature{"OpenSSL"} = 1;
$feature{"SSLpinning"} = 1;
}
elsif ($libcurl =~ /\squictls\b/i) {
# OpenSSL compatible API
$feature{"OpenSSL"} = 1;
$feature{"SSLpinning"} = 1;
}
elsif ($libcurl =~ /\smbedTLS\b/i) {
$feature{"mbedtls"} = 1;
$feature{"SSLpinning"} = 1;