diff options
author | JP Rosevear <jpr@ximian.com> | 2001-06-12 06:25:29 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-06-12 06:25:29 +0800 |
commit | 909185a3858345e8e2ffbd40944466fe040a1d74 (patch) | |
tree | 8ce16a5cdb0df2ec88565ce657ca1949d5c1bed6 | |
parent | df452e35892c7d4195e0480c5ac1ed398f0f09f0 (diff) | |
download | gsoc2013-evolution-909185a3858345e8e2ffbd40944466fe040a1d74.tar gsoc2013-evolution-909185a3858345e8e2ffbd40944466fe040a1d74.tar.gz gsoc2013-evolution-909185a3858345e8e2ffbd40944466fe040a1d74.tar.bz2 gsoc2013-evolution-909185a3858345e8e2ffbd40944466fe040a1d74.tar.lz gsoc2013-evolution-909185a3858345e8e2ffbd40944466fe040a1d74.tar.xz gsoc2013-evolution-909185a3858345e8e2ffbd40944466fe040a1d74.tar.zst gsoc2013-evolution-909185a3858345e8e2ffbd40944466fe040a1d74.zip |
One slight db3 check correction
2001-06-11 JP Rosevear <jpr@ximian.com>
* configure.in: One slight db3 check correction
svn path=/trunk/; revision=10192
-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, |