]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
runtests: accecpt 'quictls' as OpenSSL compatible
authorDaniel Stenberg <daniel@haxx.se>
Tue, 10 Sep 2024 12:46:40 +0000 (14:46 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 11 Sep 2024 06:17:16 +0000 (08:17 +0200)
And set the "OpenSSL" feature.

Follow-up to 86d4a4124e275f355320d

Closes #14850

tests/runtests.pl

index 07802ad37618a5eb8aa13ef847de82b8e169b052..60482743d64c5f987b411ca03da35dcd854b2524 100755 (executable)
@@ -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;