From 25a1ef09ee2330257170487d133f4f106675e6e4 Mon Sep 17 00:00:00 2001 From: maximesrd <42911617+maximesrd@users.noreply.github.com> Date: Sun, 2 Sep 2018 17:43:20 +0200 Subject: [PATCH 1/2] Update INSTALL.md Missing dependencies to compile Plume --- docs/INSTALL.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 6c337c0f..86288012 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -6,10 +6,11 @@ In order to be installed and to work correctly, Plume needs: - *Git* (to get the code) - *Curl* (for RustUp, the Rust installer) -- *GCC* (to compile C dependencies) +- *GCC* and *make* (to compile C dependencies) - *PostgreSQL* (for the database) - *GetText* (to manage translations) - *Rust* and *Cargo* (to build the code) +- *OpenSSL* and *OpenSSL librairies* (for security) All the following instructions will need a terminal. @@ -20,13 +21,13 @@ On **Debian**: ```bash apt update -apt install gettext postgresql postgresql-contrib libpq-dev git +apt install gettext postgresql postgresql-contrib libpq-dev git curl gcc make openssl libssl-dev ``` On **Fedora**, **CentOS** or **RHEL**: ```bash -dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel +dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel git curl gcc make openssl libssl-dev # TODO: GetText + Git install ``` From 8b1130f0ddbea96c79af3eaed3c2b9f1e5695a77 Mon Sep 17 00:00:00 2001 From: maximesrd <42911617+maximesrd@users.noreply.github.com> Date: Sun, 2 Sep 2018 17:57:18 +0200 Subject: [PATCH 2/2] Update INSTALL.md correction of two errors: about openssl library and deletion omission --- docs/INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 86288012..e1caf8e8 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -27,8 +27,8 @@ apt install gettext postgresql postgresql-contrib libpq-dev git curl gcc make op On **Fedora**, **CentOS** or **RHEL**: ```bash -dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel git curl gcc make openssl libssl-dev -# TODO: GetText + Git install +dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel git curl gcc make openssl openssl-devel +# TODO: GetText ``` On **Gentoo**: