From: sftcd Date: Mon, 5 May 2025 21:37:49 +0000 (+0100) Subject: ECH: reference the OpenSSL ECH feature branch X-Git-Tag: curl-8_14_0~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de881a92eb82119ced7c0f283ca3ca07e3716d18;p=thirdparty%2Fcurl.git ECH: reference the OpenSSL ECH feature branch rather than the defo-project fork. Closes #17251 --- diff --git a/docs/ECH.md b/docs/ECH.md index 2c29015a87..969bbfa27f 100644 --- a/docs/ECH.md +++ b/docs/ECH.md @@ -18,16 +18,17 @@ discussion about a good path forward for ECH support in curl. ## OpenSSL Build -To build our ECH-enabled OpenSSL fork: +To build the OpenSSL project's ECH feature branch: ```bash cd $HOME/code - git clone https://github.com/defo-project/openssl + git clone https://github.com/openssl/openssl cd openssl + git checkout feature/ech ./config --libdir=lib --prefix=$HOME/code/openssl-local-inst ...stuff... make -j8 - ...stuff (maybe go for coffee)... + ...more stuff... make install_sw ...a little bit of stuff... ```