isdn4k-utils/isdnlog/aclocal.m4

58 lines
1.7 KiB
Plaintext

dnl
dnl Check for postgres
dnl
AC_DEFUN(AC_CHECK_POSTGRES, [
POSTGRESDIR=""
pqdir="no"
tst_postgresdir="$CONFIG_ISDNLOG_POSTGRESDIR"
AC_ARG_WITH(postgres,
[ --with-postgres=DIR Set postgres directory []],
tst_postgresdir="${withval}")
if test "$tst_postgresdir" != "" || test "$CONFIG_ISDNLOG_POSTGRES" = "y" ; then
AC_MSG_CHECKING([for postgres in ${tst_postgresdir}])
if test "${tst_postgresdir}" != "" ; then
AC_EGREP_HEADER(PGconn,${tst_postgresdir}/include/libpq-fe.h,
pqdir=${tst_postgresdir})
fi
if test "$pqdir" = "no" ; then
AC_MSG_RESULT("$pqdir")
AC_MSG_CHECKING([for postgres in /lib/postgres95])
AC_EGREP_HEADER(PGconn,/lib/postgre95/include/libpq-fe.h,
pqdir=/lib/postgres95)
fi
if test "$pqdir" = "no" ; then
AC_MSG_RESULT("$pqdir")
AC_MSG_CHECKING([for postgres in /usr/lib/postgres95])
AC_EGREP_HEADER(PGconn,/usr/lib/postgre95/include/libpq-fe.h,
pqdir=/usr/lib/postgres95)
fi
if test "$pqdir" = "no" ; then
AC_MSG_RESULT("$pqdir")
AC_MSG_CHECKING([for postgres in /usr/local/postgres95])
AC_EGREP_HEADER(PGconn,/usr/lib/local/postgre95/include/libpq-fe.h,
pqdir=/usr/local/postgres95)
fi
if test "$pqdir" = "no" ; then
AC_MSG_RESULT("$pqdir")
AC_MSG_CHECKING([for postgres in /usr/local/lib/postgres95])
AC_EGREP_HEADER(PGconn,/usr/lib/local/lib/postgre95/include/libpq-fe.h,
pqdir=/usr/local/lib/postgres95)
fi
fi
if test "$pqdir" != "no" ; then
AC_MSG_RESULT("yes")
POSTGRES=1
AC_DEFINE_UNQUOTED(POSTGRES,1)
else
AC_MSG_RESULT("no POSTGRES DISABLED")
pqdir=""
fi
POSTGRESDIR="$pqdir"
AC_DEFINE_UNQUOTED(POSTGRESDIR,"$pqdir")
AC_SUBST(POSTGRES)
AC_SUBST(POSTGRESDIR)
])