From 225edae5dbccd75b06a3eba810e905d20258c08d Mon Sep 17 00:00:00 2001 From: Alexey Kopytov Date: Tue, 3 Jul 2018 22:37:53 +0300 Subject: [PATCH] Add OpenSSL development libs to instructions on building from source. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4173515..6475004 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ build and use an older 0.5 release on Windows. ``` shell apt -y install make automake libtool pkg-config libaio-dev # For MySQL support - apt -y install libmysqlclient-dev + apt -y install libmysqlclient-dev libssl-dev # For PostgreSQL support apt -y install libpq-dev ``` @@ -143,7 +143,7 @@ build and use an older 0.5 release on Windows. ``` shell yum -y install make automake libtool pkgconfig libaio-devel # For MySQL support, replace with mysql-devel on RHEL/CentOS 5 - yum -y install mariadb-devel + yum -y install mariadb-devel openssl-devel # For PostgreSQL support yum -y install postgresql-devel ``` @@ -152,7 +152,7 @@ build and use an older 0.5 release on Windows. ``` shell dnf -y install make automake libtool pkgconfig libaio-devel # For MySQL support - dnf -y install mariadb-devel + dnf -y install mariadb-devel openssl-devel # For PostgreSQL support dnf -y install postgresql-devel ```