|
3 | 3 | # Copyright (C) Viktor Szakats. See LICENSE.md
|
4 | 4 | # SPDX-License-Identifier: MIT
|
5 | 5 |
|
6 |
| -# Caveats (as of 4.0.0): |
| 6 | +# Caveats (as of 4.1.0): |
7 | 7 | # - CET not enabled in mingw-w64 x64 ASM functions.
|
8 | 8 | # https://github.com/libressl/portable/pull/1032
|
9 | 9 | # - ASM support only for x64.
|
|
14 | 14 | # - Missing `SSL_set0_wbio()` function.
|
15 | 15 | # https://github.com/libressl/portable/issues/838
|
16 | 16 | # - No obvious way to selectively disable obsolete protocols/APIs/features.
|
17 |
| -# - `--prefix` ignored in `cmake --install` for /etc/ssl files. |
18 |
| -# https://github.com/libressl/portable/issues/1118 |
19 |
| -# https://github.com/libressl/portable/pull/1119 [MERGED. Expected in 4.0.1] |
20 | 17 | # - server signatures signed with ED25519 do not work
|
21 | 18 | # https://github.com/curl/curl-for-win/discussions/78 https://github.com/libressl/portable/issues/821
|
22 | 19 | # - ECH support: https://github.com/libressl/portable/issues/546
|
| 20 | +# - No support for TLSv1.3 session tickets. |
| 21 | +# https://github.com/libressl/portable/issues/719 |
| 22 | +# https://github.com/curl/curl/issues/18031#issuecomment-3144406973 |
| 23 | +# - No `SSLKEYLOGFILE` support. |
| 24 | +# https://github.com/curl/curl/issues/13672 |
| 25 | +# https://marc.info/?l=libressl&m=158908819814107 |
| 26 | +# https://superuser.com/questions/1871314/curl-for-windows-sslkeylog-file-always-empty-when-running-from-powershell |
23 | 27 |
|
24 | 28 | # shellcheck disable=SC3040,SC2039
|
25 | 29 | set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail
|
|
0 commit comments