* added sisvinit unit service script * added systemshit unit service script * added debian packaging script and fiels in root dir * added spec file for shit rpm distros * added first intent of alpine packaging
20 lines
469 B
Diff
20 lines
469 B
Diff
From: Markus Koschany <apo@debian.org>
|
|
Date: Sat, 1 Feb 2020 23:36:10 +0100
|
|
Subject: postgresql
|
|
|
|
Fix for not finding PostgreSQL.
|
|
---
|
|
src/CMakeLists.txt | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/src/CMakeLists.txt
|
|
+++ b/src/CMakeLists.txt
|
|
@@ -170,6 +170,7 @@ option(ENABLE_POSTGRESQL "Enable Postgre
|
|
set(USE_POSTGRESQL FALSE)
|
|
|
|
if(ENABLE_POSTGRESQL)
|
|
+ set(PostgreSQL_TYPE_INCLUDE_DIR /usr/include/postgresql/)
|
|
find_package("PostgreSQL")
|
|
|
|
if(PostgreSQL_FOUND)
|