]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
runtests.pl: treat LibreSSL and BoringSSL as OpenSSL
authorMarcel Raad <Marcel.Raad@teamviewer.com>
Sat, 1 Aug 2020 16:00:50 +0000 (18:00 +0200)
committerMarcel Raad <Marcel.Raad@teamviewer.com>
Sun, 2 Aug 2020 08:32:00 +0000 (10:32 +0200)
This makes the tests that require the OpenSSL feature also run for
those two compatible libraries.

Closes https://github.com/curl/curl/pull/5762

tests/runtests.pl

index c794ac55ad37c60ea7b6e8407cd6fa62248ac9ea..cc70a10115566501c506af14b1ebd8a12ee81d64 100755 (executable)
@@ -2817,7 +2817,7 @@ sub setupfeatures {
     $feature{"NSS"} = $has_nss;
     $feature{"NTLM"} = $has_ntlm;
     $feature{"NTLM_WB"} = $has_ntlm_wb;
-    $feature{"OpenSSL"} = $has_openssl;
+    $feature{"OpenSSL"} = $has_openssl || $has_libressl || $has_boringssl;
     $feature{"PSL"} = $has_psl;
     $feature{"Schannel"} = $has_winssl; # alias
     $feature{"sectransp"} = $has_darwinssl;