2003-05-03 Christian Stimming <stimming@tuhh.de>

* 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
zzzoldreleases/1.8
Christian Stimming 23 years ago
parent 9f63a0733b
commit 15539eaca2

@ -1,3 +1,8 @@
2003-05-03 Christian Stimming <stimming@tuhh.de>
* configure.in: Fix hbci and ofx test for handling --disable
correctly.
2003-05-01 Derek Atkins <derek@ihtfp.com>
* src/import-export/qif-import/qif-parse.scm: Don't assume that a

@ -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)

Loading…
Cancel
Save