r17220 - gnucash/branches/gda-dev2 - 1) Change default for requiring gda to false (--disable-gda is now

Phil Longstaff plongstaff at cvs.gnucash.org
Thu Jun 12 08:43:11 EDT 2008


Author: plongstaff
Date: 2008-06-12 08:43:10 -0400 (Thu, 12 Jun 2008)
New Revision: 17220
Trac: http://svn.gnucash.org/trac/changeset/17220

Modified:
   gnucash/branches/gda-dev2/configure.in
Log:
1) Change default for requiring gda to false (--disable-gda is now 
--enable-gda).
2) Use AS_HELP_STRING to generate gda and dbi help strings


Modified: gnucash/branches/gda-dev2/configure.in
===================================================================
--- gnucash/branches/gda-dev2/configure.in	2008-06-12 00:04:58 UTC (rev 17219)
+++ gnucash/branches/gda-dev2/configure.in	2008-06-12 12:43:10 UTC (rev 17220)
@@ -609,12 +609,13 @@
 ### -----------------------
 ### LIBGDA
 AC_ARG_ENABLE(gda, 
-  [  --disable-gda                build without the libgda backend],
+  [AS_HELP_STRING([--enable-gda],[build with the libgda backend])],
   [case "${enableval}" in
      yes) want_gda=true ;;
      no)  want_gda=false ;;
-     *) want_gda=true ;;
-   esac],[want_gda=true])
+     *) want_gda=false ;;
+   esac],
+   [want_gda=false])
 if test x${want_gda} = xtrue
 then
   PKG_CHECK_MODULES(LIBGDA, libgda-4.0 >= 3.99.2, [GDA_DIR=gda])
@@ -626,12 +627,13 @@
 ### ----------------------
 ### LIBDBI
 AC_ARG_ENABLE(dbi,
-  [  --disable-dbi                build without the libdbi backend],
+  [AS_HELP_STRING([--disable-dbi],[build without the libdbi backend])],
   [case "${enableval}" in
      yes) want_dbi=true ;;
      no)  want_dbi=false ;;
      *) want_dbi=true ;;
-   esac],[want_dbi=true])
+   esac],
+   [want_dbi=true])
 if test x${want_dbi} = xtrue
 then
   AC_CHECK_HEADERS(dbi/dbi.h)



More information about the gnucash-changes mailing list