From 474900082cde954c98f91d8a7c6fc1e53b614c72 Mon Sep 17 00:00:00 2001 From: jralls Date: Fri, 20 Jan 2012 21:10:47 +0000 Subject: [PATCH] [r21867]Reverse the test for HAVE_DBI ac_cv_header_dbi_dbi_h is set only if want_dbi is true, so testing for != no succeeds if dbi isn't enabled -- which is not what we want. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/branches/2.4@21868 57a11ea4-9604-0410-9ed3-97b8803252fd --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 1f3be93..0994e93 100644 --- a/configure.ac +++ b/configure.ac @@ -588,7 +588,7 @@ fi AC_SUBST(LIBDBI_LIBS) AC_SUBST(GNC_DBD_DIR) AM_CONDITIONAL(CUSTOM_GNC_DBD_DIR, [test x"$GNC_DBD_DIR" != "x"]) -AM_CONDITIONAL(WITH_DBI, [test "x$ac_cv_header_dbi_dbi_h" != xno]) +AM_CONDITIONAL(WITH_DBI, [test "x$ac_cv_header_dbi_dbi_h" == xyes]) ### -------------------------------------------------------------------------- ### Variables -- 1.7.6.1