mirror of
https://github.com/curl/curl.git
synced 2026-08-25 04:13:32 +03:00
KNOWN_BUGS: mention AppleIDN and WinIDN test problems
Closes #14176 Closes #14387
This commit is contained in:
parent
781c14c4ed
commit
7d45b52166
7 changed files with 27 additions and 3 deletions
|
|
@ -426,6 +426,7 @@ SKIPPED.
|
|||
Features testable here are:
|
||||
|
||||
- `alt-svc`
|
||||
- `AppleIDN`
|
||||
- `bearssl`
|
||||
- `brotli`
|
||||
- `c-ares`
|
||||
|
|
@ -487,6 +488,7 @@ Features testable here are:
|
|||
- `verbose-strings`
|
||||
- `wakeup`
|
||||
- `win32`
|
||||
- `WinIDN`
|
||||
- `wolfssh`
|
||||
- `wolfssl`
|
||||
- `xattr`
|
||||
|
|
|
|||
|
|
@ -93,3 +93,10 @@
|
|||
%if bearssl
|
||||
313
|
||||
%endif
|
||||
%if AppleIDN
|
||||
1034
|
||||
1035
|
||||
%endif
|
||||
%if WinIDN
|
||||
165
|
||||
%endif
|
||||
|
|
|
|||
|
|
@ -593,6 +593,12 @@ sub checksystemfeatures {
|
|||
# nghttp2 supports h2c, hyper does not
|
||||
$feature{"h2c"} = 1;
|
||||
}
|
||||
if ($libcurl =~ /AppleIDN/) {
|
||||
$feature{"AppleIDN"} = 1;
|
||||
}
|
||||
if ($libcurl =~ /WinIDN/) {
|
||||
$feature{"WinIDN"} = 1;
|
||||
}
|
||||
if ($libcurl =~ /libssh2/i) {
|
||||
$feature{"libssh2"} = 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue