diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-05-06 21:30:59 +0200 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-05-12 23:01:42 +0200 |
commit | 26344ae27d367577d0a2b0a38efae8358041df56 (patch) | |
tree | 2495163eb7983550c36e7eccd59f47079a55d41d /doc/install.md | |
parent | 6c5db261812b20534c277fb8c839a910e5d4eac3 (diff) |
Disable TLSv1.3 in MbedTLS 3.6.0 for now
In Mbed TLS 3.6.0 there is support for TLSv1.3 but it requires
special handling, so for now we disable it.
See: https://gitlab.alpinelinux.org/alpine/aports/-/commit/4dc36afaa81a4d73758b29fa77981d07dbae0080.patch
Fixes: https://github.com/dillo-browser/dillo/issues/158
Diffstat (limited to 'doc/install.md')
-rw-r--r-- | doc/install.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/install.md b/doc/install.md index e5bce883..344cff01 100644 --- a/doc/install.md +++ b/doc/install.md @@ -21,12 +21,13 @@ library to browse HTTPS pages. Currently, Dillo supports any of the following libraries: - OpenSSL 1.1 or 3 - - mbedTLS 2 or 3 + - LibreSSL + - mbedTLS 2 or 3 (TLSv1.3 is not supported yet) If you don't want to use a TLS library, use the configure option `--disable-tls` to disable TLS support. You can use `--disable-openssl` -and `--disable-mbedtls` to control the search. By default OpenSSL is -search first, then mbedTLS. +and `--disable-mbedtls` to control the search. By default OpenSSL or +LibreSSL is search first, then mbedTLS. For Debian, you can use the following command to install the required packages to build Dillo: |