Skip to content
Snippets Groups Projects
Commit 6d16cb3e authored by Oliver Freyermuth's avatar Oliver Freyermuth Committed by Pere Mato
Browse files

FindPostgreSQL.cmake: Add PATH_SUFFIX for searching.

This slightly changes lookup order: Namely, the system-folder "/usr/include/postgresql"
is now preferred over "/usr/include/" even if both container libpq-fe.h.
This finds the correct path on a standard Gentoo installation, where "/usr/include/postgresql"
is a symlink to the folder with all include-files for the user-selected postgresql-version,
while "/usr/include/libpq-fe.h" is a single symlink provided for backwards-compatibility.

Since ROOT uses also e.g. "pg_config.h", selecting "/usr/include/" over "/usr/include/postgresql"
leads to failure on Gentoo.
parent 8b2ccce6
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,9 @@ find_path(POSTGRESQL_INCLUDE_DIR libpq-fe.h
"/usr/include/pgsql/server"
"/usr/include/postgresql/server"
"/usr/include/postgresql/*/server"
PATH_SUFFIXES
postgresql
include
)
find_library(POSTGRESQL_LIBRARY NAMES pq
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment