From 15539eaca2ef07a859b74bd9dfe9119da0aa6cbc Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Sat, 3 May 2003 20:57:00 +0000 Subject: [PATCH] 2003-05-03 Christian Stimming * configure.in: Fix hbci and ofx test for handling --disable correctly. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/branches/1.8@8270 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 5 +++++ configure.in | 8 ++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 69d9796699..f69c675b5c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-05-03 Christian Stimming + + * configure.in: Fix hbci and ofx test for handling --disable + correctly. + 2003-05-01 Derek Atkins * src/import-export/qif-import/qif-parse.scm: Don't assume that a diff --git a/configure.in b/configure.in index 3c79786e28..9c15e3cc2d 100644 --- a/configure.in +++ b/configure.in @@ -468,7 +468,9 @@ AC_SUBST(RPC_DIR) ### OFX AC_ARG_ENABLE( ofx, [ --enable-ofx compile with ofx support (needs LibOFX)], - OFX_DIR=ofx) + if test "x$enableval" != "xno" ; then + OFX_DIR=ofx + fi) if test x${OFX_DIR} = xofx ; then AC_ARG_WITH( ofx-prefix, @@ -523,7 +525,9 @@ AC_SUBST(OFX_DIR) ### HBCI AC_ARG_ENABLE( hbci, [ --enable-hbci compile with HBCI support (needs OpenHBCI)], - HBCI_DIR=hbci) + if test "x$enableval" != "xno" ; then + HBCI_DIR=hbci + fi) if test x${HBCI_DIR} = xhbci ; then AM_PATH_OPENHBCI(0.9.6)