runtests: recognize AWS-LC as OpenSSL

Fixes (GHA/linux, AWS-LC jobs):
```
test 0307 SKIPPED: curl lacks OpenSSL support
test 0308 SKIPPED: curl lacks OpenSSL support
[...]
```
Ref: https://github.com/curl/curl/actions/runs/13511134270/job/37751473424#step:42:104

Follow-up to 34ef4fab22 #10320
Closes #16466
This commit is contained in:
Viktor Szakats 2025-02-25 01:31:58 +01:00
parent 6306476fc3
commit 31fd77fb3b
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -569,7 +569,7 @@ sub checksystemfeatures {
$feature{"sectransp"} = 1;
$feature{"SSLpinning"} = 1;
}
elsif ($libcurl =~ /\sBoringSSL\b/i) {
elsif ($libcurl =~ /\s(BoringSSL|AWS-LC)\b/i) {
# OpenSSL compatible API
$feature{"OpenSSL"} = 1;
$feature{"SSLpinning"} = 1;