summaryrefslogtreecommitdiff
blob: 0ee7236d4ab43239bb148775035fa49d49477950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Fix include path for newer PostgreSQL versions

--- configure.in
+++ configure.in
@@ -674,7 +674,9 @@
      LIB_PGSQL_DIR=$LIB_PGSQL
      LIB_PGSQL="$LIB_PGSQL -lpq"
 
-     if test -d ${with_pgsql}/include/pgsql; then
+     if test -d ${with_pgsql}/include/postgresql/pgsql; then
+         CPPFLAGS="${CPPFLAGS} -I${with_pgsql}/include/postgresql/pgsql"
+     elif test -d ${with_pgsql}/include/pgsql; then
          CPPFLAGS="${CPPFLAGS} -I${with_pgsql}/include/pgsql"
      elif test -d ${with_pgsql}/pgsql/include; then
          CPPFLAGS="${CPPFLAGS} -I${with_pgsql}/pgsql/include"