r19034 - gnucash/trunk - Change default from --disable-dbi to --enable-dbi.

Phil Longstaff plongstaff at code.gnucash.org
Sun Apr 18 14:08:42 EDT 2010


Author: plongstaff
Date: 2010-04-18 14:08:42 -0400 (Sun, 18 Apr 2010)
New Revision: 19034
Trac: http://svn.gnucash.org/trac/changeset/19034

Modified:
   gnucash/trunk/configure.in
Log:
Change default from --disable-dbi to --enable-dbi.

This is needed so that 'make distcheck' will work with the business sql backend tests.


Modified: gnucash/trunk/configure.in
===================================================================
--- gnucash/trunk/configure.in	2010-04-18 18:07:35 UTC (rev 19033)
+++ gnucash/trunk/configure.in	2010-04-18 18:08:42 UTC (rev 19034)
@@ -568,14 +568,15 @@
 
 ### ----------------------
 ### LIBDBI
+
 AC_ARG_ENABLE(dbi,
-  [AS_HELP_STRING([--enable-dbi],[build with the libdbi backend])],
+  [AS_HELP_STRING([--disable-dbi],[don't build with the libdbi backend])],
   [case "${enableval}" in
      yes) want_dbi=true ;;
      no)  want_dbi=false ;;
      *) want_dbi=false ;;
    esac],
-   [want_dbi=false])
+   [want_dbi=true])
 if test x${want_dbi} = xtrue
 then
   AC_CHECK_HEADERS(dbi/dbi.h)



More information about the gnucash-changes mailing list