Deactivate --enable-sql because PostgreSQL backend is still broken and we can't fix it before 2.0.0; bug#332251.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14175 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2006-05-24 09:17:34 +00:00
parent 89fa660a3f
commit 2f68936cbc
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-05-24 Christian Stimming <stimming@tuhh.de>
* configure.in: Deactivate --enable-sql because PostgreSQL backend
is still broken and we can't fix it before 2.0.0; bug#332251.
2006-05-23 Joshua Sled <jsled@asynchronous.org>
* src/register/register-gnome/gnucash-sheet.c

View File

@ -586,6 +586,14 @@ AC_ARG_ENABLE( sql,
if test "x$enableval" != "xno" ; then
AC_MSG_ERROR([
We are very sorry, but the PostgreSQL backend is currently
completely broken. --enable-sql has been disabled because of this.
See e. g. http://bugzilla.gnome.org/show_bug.cgi?id=332251
])
PGSQL_CFLAGS=`${PG_CONFIG} --includedir`
if test "x$PGSQL_CFLAGS" != x; then
PGSQL_CFLAGS="-I${PGSQL_CFLAGS}"