Missing dependencies

sqlite was missing, which caused the compilation to fail, even if the database used is postgresql
This commit is contained in:
maximesrd 2018-10-06 17:12:30 +02:00 committed by GitHub
parent 00fe11fcbb
commit 65900af763
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ In order to be installed and to work correctly, Plume needs:
- *Git* (to get the code) - *Git* (to get the code)
- *Curl* (for RustUp, the Rust installer) - *Curl* (for RustUp, the Rust installer)
- *GCC* and *make* (to compile C dependencies) - *GCC* and *make* (to compile C dependencies)
- *PostgreSQL* (for the database) - *PostgreSQL* or *Sqlite3* (for the database)
- *GetText* (to manage translations) - *GetText* (to manage translations)
- *Rust* and *Cargo* (to build the code) - *Rust* and *Cargo* (to build the code)
- *OpenSSL* and *OpenSSL librairies* (for security) - *OpenSSL* and *OpenSSL librairies* (for security)
@ -24,20 +24,20 @@ On **Debian**:
```bash ```bash
apt update apt update
apt install gettext postgresql postgresql-contrib libpq-dev git curl gcc make openssl libssl-dev apt install gettext postgresql postgresql-contrib libpq-dev git curl gcc make openssl libssl-dev sqlite3 libsqlite3-dev
``` ```
On **Fedora**, **CentOS** or **RHEL**: On **Fedora**, **CentOS** or **RHEL**:
```bash ```bash
dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel git curl gcc make openssl openssl-devel gettext dnf install postgresql-server postgresql-contrib mariadb-devel libsq3-devel libpqxx libpqxx-devel git curl gcc make openssl openssl-devel gettext sqlite3 libsqlite3-dev
``` ```
On **Gentoo**: On **Gentoo**:
```bash ```bash
emerge --sync emerge --sync
emerge -av postgresql eselect-postgresql gettext && emerge --ask dev-vcs/git emerge -av postgresql eselect-postgresql gettext && emerge --ask dev-vcs/git && emerge -pv sqlite3 libsqlite3-dev
``` ```
On **Mac OS X**, with [Homebrew](https://brew.sh/): On **Mac OS X**, with [Homebrew](https://brew.sh/):