need libpq-dev lib for rpm-based distros, fix deprecated cargo command usage #90
No reviewers
Labels
No labels
bug
dependencies
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: plume/documentation#90
Loading…
Reference in a new issue
No description provided.
Delete branch "clasick/documentation:dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
There is an error when installing on Fedora (32) where during compilation, we can't find the libraries for postgresql.
Installing libpq-dev using the command:
Fixes the error (even without a terminal or OS restart).
@ -5,3 +5,3 @@
```bash
# If you want PostgreSQL
dnf install postgresql-server postgresql-contrib libpqxx libpqxx-devel git curl gcc make openssl openssl-devel gettext clang-devel
dnf install postgresql-server postgresql-contrib libpqxx libpqxx-devel libpq-devel lib git curl gcc make openssl openssl-devel gettext clang-devel
Is
lib
a real package, or is it a typo?Also, are
libpqxx
andlibpqxx-devel
still required (I guess these are the C++ libs, but Plume may only need the C versions)?Oops, thanks for point that out, didn't realize that typo got in.
As for
libpqxx
andlibpqxx-devel
, after removing those 2 packages, what can I build to confirm whether they are still needed or not? Should I do front/back end, plm, and cli builds to make sure of this?xx are generally for C++ and should not be needed
@kiwii @igalic Can confirm now that the xx packages are not actually needed. Uninstalled both and was able to successfully run the build commands without any errors.
Added another to fix deprecated usage of
cargo install
. If the existing command as specified in the documentation is used, it throws this error:Added
--path .
parameter to fix this.need libpq-dev lib for Fedorato need libpq-dev lib for rpm-based distros, fix deprecated cargo command usage@kiwii can we finish this pull request?