- add systemd scripts - add manpage for pmacct - remove not longer supported build options - enable-v4-mapped - with-pgsql-includes - fix build for older SUSE versions (SLES11SP4, SLES12, OpenSUSE 13.1) - add patch for psql-header detection on SLES11SP4 and openSUSE 13.1 - pmacct-pgsql-fix-header-detection-without-autoreconf.diff - update to version 1.6.0 OBS-URL: https://build.opensuse.org/request/show/408254 OBS-URL: https://build.opensuse.org/package/show/server:monitoring/pmacct?expand=0&rev=81
18 lines
846 B
Diff
18 lines
846 B
Diff
diff --git a/configure b/configure
|
|
index dc5e095..fb8fecf 100755
|
|
--- a/configure
|
|
+++ b/configure
|
|
@@ -13508,9 +13508,9 @@ $as_echo "found in /usr/include" >&6; }
|
|
PGSQL_CFLAGS="-I/usr/include/postgresql"
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: found in /usr/include/postgresql" >&5
|
|
$as_echo "found in /usr/include/postgresql" >&6; }
|
|
- elif test -r /usr/local/include/libpq-fe.h; then
|
|
- PGSQL_CFLAGS="-I/usr/local/include"
|
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: found in /usr/local/include" >&5
|
|
+ elif test -r /usr/include/pgsql/libpq-fe.h; then
|
|
+ PGSQL_CFLAGS="-I/usr/include/pgsql"
|
|
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: found in /usr/include/pgsql" >&5
|
|
$as_echo "found in /usr/local/include" >&6; }
|
|
elif test -r /usr/local/pgsql/include/libpq-fe.h; then
|
|
PGSQL_CFLAGS="-I/usr/local/pgsql/include"
|