* configure.in: search for db-4.1. Fixes #116509.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8877 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2003-07-15 01:20:28 +00:00
parent 319dd4d7aa
commit 300c1af7ab
2 changed files with 8 additions and 2 deletions

View File

@ -4,6 +4,8 @@
(written-in-C) QIF importer. The code compiles but has not
been tested. Yet to do: merging, conversion to gnc, and UI.
* configure.in: search for db-4.1. Fixes #116509.
2003-07-10 Derek Atkins <derek@ihtfp.com>
* src/import-export/import-parse.[ch]: routines to parse numbers

View File

@ -740,7 +740,9 @@ if test "$prefer_db1" = "yes"; then
AC_CHECK_LIB(db, dbopen, DB_LIBS="-ldb",
AC_CHECK_LIB(db-3, __db185_open, DB_LIBS="-ldb-3",
AC_CHECK_LIB(db-4.0, __db185_open, DB_LIBS="-ldb-4.0",
AC_MSG_ERROR([Your db library is missing db 1.85 compatibility mode])
AC_CHECK_LIB(db-4.1, __db185_open, DB_LIBS="-ldb-4.1",
AC_MSG_ERROR([Your db library is missing db 1.85 compatibility mode])
)
)
)
)
@ -750,7 +752,9 @@ else
AC_CHECK_LIB(db1, dbopen, DB_LIBS="-ldb1",
AC_CHECK_LIB(db-3, __db185_open, DB_LIBS="-ldb-3",
AC_CHECK_LIB(db-4.0, __db185_open, DB_LIBS="-ldb-4.0",
AC_MSG_ERROR([Your db library is missing db 1.85 compatibility mode])
AC_CHECK_LIB(db-4.1, __db185_open, DB_LIBS="-ldb-4.1",
AC_MSG_ERROR([Your db library is missing db 1.85 compatibility mode])
)
)
)
)