From a3b1dc7f37f2005a0b5842f75ef852672b7b98bb Mon Sep 17 00:00:00 2001 From: rickyrick2002 Date: Wed, 19 Oct 2022 00:33:43 +0800 Subject: [PATCH] update MbedTLS dependency link and add Debian / Ubuntu apt pkg-config --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b394e1ef..51380f5a 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ For some of the distributions, you might install build dependencies like this: ```bash # Installation of basic build dependencies ## Debian / Ubuntu -sudo apt-get install --no-install-recommends gettext build-essential autoconf libtool libpcre3-dev asciidoc xmlto libev-dev libc-ares-dev automake libmbedtls-dev libsodium-dev +sudo apt-get install --no-install-recommends gettext build-essential autoconf libtool libpcre3-dev asciidoc xmlto libev-dev libc-ares-dev automake libmbedtls-dev libsodium-dev pkg-config ## CentOS / Fedora / RHEL sudo yum install gettext gcc autoconf libtool automake make asciidoc xmlto c-ares-devel libev-devel ## Arch @@ -243,8 +243,8 @@ sudo ldconfig # Installation of MbedTLS export MBEDTLS_VER=2.6.0 -wget https://tls.mbed.org/download/mbedtls-$MBEDTLS_VER-gpl.tgz -tar xvf mbedtls-$MBEDTLS_VER-gpl.tgz +wget https://github.com/Mbed-TLS/mbedtls/archive/refs/tags/mbedtls-2.6.0.tar.gz +tar xvf mbedtls-$MBEDTLS_VER.tar.gz pushd mbedtls-$MBEDTLS_VER make SHARED=1 CFLAGS="-O2 -fPIC" sudo make DESTDIR=/usr install