From: laforge Date: Tue, 15 Jul 2003 12:18:50 +0000 (+0000) Subject: check for more posgresql include paths (supposedly fixes problem with rh7.2) X-Git-Tag: ulogd-2.0.0beta2~398 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=409e20519fcf503cbfdbb8a6db3446aa7fff3742;p=thirdparty%2Fulogd2.git check for more posgresql include paths (supposedly fixes problem with rh7.2) --- diff --git a/configure.in b/configure.in index 39d3eda..5d0d99b 100644 --- a/configure.in +++ b/configure.in @@ -159,13 +159,14 @@ then AC_MSG_WARN(PGSQL backend not used) else AC_DEFINE(HAVE_PGSQL) - if test -f ${pgsqldir}/include/libpq-fe.h - then - PGSQLINCLUDES=${pgsqldir}/include - elif test -f ${pgsqldir}/include/postgresql/libpq-fe.h - then - PGSQLINCLUDES=${pgsqldir}/include/postgresql - fi + for i in include include/postgresql include/pgsql + do + if test -f ${pgsqldir}/$i/libpq-fe.h + then + PGSQLINCLUDES=${pgsqldir}/$i + break + fi + done PGSQLLIBS=${pgsqldir}/lib DATABASE_DIR="${DATABASE_DIR} pgsql"