mirror of
https://github.com/curl/curl.git
synced 2026-05-15 04:06:19 +03:00
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:
parent
6306476fc3
commit
31fd77fb3b
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue