From c02263debeb8314f49063d536c0dc536a3632cd4 Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Thu, 9 Mar 2023 13:14:29 +0100 Subject: [PATCH] feat: add libressl --- doc/libressl.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 doc/libressl.md diff --git a/doc/libressl.md b/doc/libressl.md new file mode 100644 index 0000000..4ab3443 --- /dev/null +++ b/doc/libressl.md @@ -0,0 +1,17 @@ +# install libressl + +[download link](https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/) + +* download latest tarball from download link +``` +cd ~ +mkdir tmp && cd tmp +wget https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.7.0.tar.gz +tar -xzvf libressl +cd libressl +mkdir build && cd build +../configure +make +sudo make install +sudo ldconfig +```