feat: add libressl

This commit is contained in:
dancingCycle 2023-03-09 13:14:29 +01:00
parent 4150ee4f77
commit c02263debe
1 changed files with 17 additions and 0 deletions

17
doc/libressl.md Normal file
View File

@ -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
```