summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Sowden <jeremy@azazel.net>2022-12-13 11:19:51 +0000
committerPablo Neira Ayuso <pablo@netfilter.org>2023-03-14 23:33:33 +0100
commit9fa2184c303a237917b76da74f7271dca70d0d90 (patch)
tree31acaea689f2b8b474b72e7c4c3b520fe5a1850d
parentb6ca4b182ec881f33239c101d5d8d4e903d83d12 (diff)
build: fix pgsql fall-back configuration of CFLAGS
When using mysql_config and pcap_config to configure `CFLAGS`, one requests the actual flags: $mysql_config --cflags $pcap_config --cflags By constrast, when using pg_config, one requests the include-directory: $pg_config --includedir Therefore, the `-I` option has to be explicitly added. Fixes: 20727ab8b9fc ("build: use pkg-config or pg_config for libpq") Signed-off-by: Jeremy Sowden <jeremy@azazel.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6ee29ce..70eed9d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -92,7 +92,7 @@ AS_IF([test "x$enable_pgsql" != "xno"], [
AS_IF([command -v "$pg_config" >/dev/null], [
- libpq_CFLAGS="`$pg_config --includedir`"
+ libpq_CFLAGS="-I`$pg_config --includedir`"
libpq_LIBS="`$pg_config --libdir` -lpq"
AC_SUBST([libpq_CFLAGS])