diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 9 insertions, 3 deletions
@@ -1,11 +1,15 @@ +2001-06-11 JP Rosevear <jpr@ximian.com> + + * configure.in: One slight db3 check correction + 2001-06-11 Chris Toshok <toshok@ximian.com> * configure.in: fix typo in -ldb3 check. 2001-06-11 JP Rosevear <jpr@ximian.com> - * configure.in: Update configure checks for RedHat. /me beats a - sleep cat to death + * configure.in: Update db3 configure checks for RedHat. /me beats + a sleeping cat to death 2001-06-09 Christopher James Lahey <clahey@ximian.com> diff --git a/configure.in b/configure.in index e56331ea13..4b6fc7c2c8 100644 --- a/configure.in +++ b/configure.in @@ -351,7 +351,9 @@ main (void) ]) fi -if test $ac_cv_db3_lib_db3_check = yes; then +if test $ac_cv_db3_lib_check = yes; then + dummy=false +elif test $ac_cv_db3_lib_db3_check = yes; then DB3_LDADD="$with_db3_libs/libdb3.a" else AC_CACHE_CHECK([for -ldb-3.1 3.1.17], ac_cv_db3_lib_db31_check, |