2001-06-24 Dave Peticolas <dave@krondo.com>

* AUTHORS: credits

	* doc/sgml/C/xacc-about.sgml: credits

	* configure.in: Alex Zepeda's postgres configure patch


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4774 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas
2001-06-24 19:58:56 +00:00
parent 4c4f766745
commit 3f2e7a5b78
4 changed files with 33 additions and 6 deletions

View File

@@ -179,5 +179,6 @@ Rob Walker <rob@valinux.com> guile and register patches
David Woodhouse <dwmw2@infradead.org> messages British translations
Ken Yamaguchi <gooch@ic.EECS.Berkeley.EDU> QIF import fixes; MYM import
Shimpei Yamashita <shimpei@gol.com> messages Japanese translation
Alex Zepeda <jazepeda@pacbell.net> postgres configure patch
... and I am sure that I have missed many others ...

View File

@@ -1,3 +1,11 @@
2001-06-24 Dave Peticolas <dave@krondo.com>
* AUTHORS: credits
* doc/sgml/C/xacc-about.sgml: credits
* configure.in: Alex Zepeda's postgres configure patch
2001-06-23 Kevin Finn <kevinfinn@mediaone.net>
* src/gnome/window-reconcile.c: fix for display of auto end value

View File

@@ -173,14 +173,24 @@ AC_ARG_ENABLE( sql,
[
if test "x$enableval" != "xno" ; then
AC_CHECK_HEADERS(pgsql/libpq-fe.h postgresql/libpq-fe.h)
if test "x$ac_cv_header_pgsql_libpq_fe_h$ac_cv_header_postgresql_libpq_fe_h" == xnono; then
AC_MSG_ERROR([Cannot find PosgreSQL headers; won't build sql backend])
if test "x$ac_cv_header_pgsql_libpq_fe_h$ac_cv_header_postgresql_libpq_fe_h" = xnono; then
AC_MSG_ERROR([Cannot find PostgreSQL headers; won't build sql backend])
else
master_dirs="/usr/include /usr/local/include"
if test "x$ac_cv_header_pgsql_libpq_fe_h" != xno; then
CFLAGS="${CFLAGS} -I/usr/include/pgsql"
for dir in $master_dirs; do
if test -f "$dir/pgsql/libpq-fe.h"; then
CFLAGS="${CFLAGS} -I$dir/pgsql"
break
fi
if test "x$ac_cv_header_postgresql_libpq_fe_h" != xno; then
CFLAGS="${CFLAGS} -I/usr/include/postgresql"
done
elif test "x$ac_cv_header_postgresql_libpq_fe_h" != xno; then
for dir in $master_dirs; do
if test -f "$dir/postgresql/libpq-fe.h"; then
CFLAGS="${CFLAGS} -I$dir/postgresql"
break
fi
done
fi
saved_LIBS="$LIBS"
@@ -198,7 +208,7 @@ AC_ARG_ENABLE( sql,
SQL_DIR=sql
],
[
AC_MSG_ERROR([Cannot find PosgreSQL libraries; will not build sql backend])
AC_MSG_ERROR([Cannot find PostgreSQL libraries; will not build sql backend])
]
)
LIBS="$saved_LIBS"

View File

@@ -1016,6 +1016,14 @@ Nielsen</glossterm>
</glossentry>
</glosslist>
<glossentry>
<glossterm><email>jazepeda@pacbell.net</email> Alex Zepeda</glossterm>
<glossdef>
<para>postgres configure patch</para>
</glossdef>
</glossentry>
</glosslist>
</para>
</sect1>