Change default from --disable-dbi to --enable-dbi.

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


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19034 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2010-04-18 18:08:42 +00:00
parent 7b06836cb6
commit e96109fac1

View File

@ -568,14 +568,15 @@ AC_DEFINE(QOF_DISABLE_DEPRECATED,1, [Don't use deprecated qof functions])
### ---------------------- ### ----------------------
### LIBDBI ### LIBDBI
AC_ARG_ENABLE(dbi, 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 [case "${enableval}" in
yes) want_dbi=true ;; yes) want_dbi=true ;;
no) want_dbi=false ;; no) want_dbi=false ;;
*) want_dbi=false ;; *) want_dbi=false ;;
esac], esac],
[want_dbi=false]) [want_dbi=true])
if test x${want_dbi} = xtrue if test x${want_dbi} = xtrue
then then
AC_CHECK_HEADERS(dbi/dbi.h) AC_CHECK_HEADERS(dbi/dbi.h)