--On October 29, 2006 11:50:23 PM +0100 Marc André Selig <mas@seligma.com> wrote:
On 29.10.2006, at 01:50, Mike Alexander wrote:
Now I'm getting makefile errors during build: [...] configure.ac:17: `automake requires `AM_CONFIG_HEADER', not `AC_CONFIG_HEADER'
Googling for this error message suggests that a more current version of automake is required. Mac OS X 10.4.8 ships with automake 1.6.3; MacPorts is currently at 1.9.6.
To work around this for the time being, I've added an additional build dependency on port:automake for aqbanking.
Yes, that was the problem. Thanks for fixing it. There's also an uninitialized variable bug in aqbanking. I'll report it to the upstream people, but this patch fixes it: --- src/frontends/qbanking/lib/qbcfgmodule.cpp 2006-10-29 11:32:47.000000000 -0500 +++ src/frontends/qbanking/lib/qbcfgmodule.cpp 2006-10-29 11:33:21.000000000 -0500 @@ -25,6 +25,7 @@ QBCfgModule::QBCfgModule(QBanking *qb, const QString &name) :_qbanking(qb) ,_name(name) -,_plugin(0){ +,_plugin(0) +,_flags(0){ } Without this patch, adding a new user using the OFX backend randomly fails (always for me) without any error message except on the console. Presumably this will get fixed eventually so I don't know if you want to put this in the patch file. -- Mike Alexander mta@umich.edu Ann Arbor, MI PGP key ID: BEA343A6