Hi, On So, 2008-08-03 at 17:45 -0400, Nathan Buchanan wrote: > Hi Shawn, > On Fri, Aug 1, 2008 at 10:30 PM, Faucher <[EMAIL PROTECTED]> wrote: > > > Hello all, > > > > I maintain the GnuCash Portable package on portableapps.com. I'm excited > > to > > see with this release that aqbanking 3 is supported, since it no longer > > requires admin access to the registry (HKLM) and is thus much more > > portable. Unfortunately I see that the windows release of 2.2.6 is still > > built with aqbanking 2. > > > > Is anyone working on adding the option for aqbanking 3 to the windows build > > scripts? I'm taking a crack at doing it manually but I'm sure someone more > > familiar with the scripts would probably do a better job. > > > I think Andreas might have some pieces of it, but other than that, I don't > believe anyone is actively working on it. It is on my ever-extending todo > list, though.
yes, I have some pieces, but stopped because 'make check' in gwenhywfar simply failed with gnutls. One might want to ignore that for a while and continue creating the other inst_ functions. Shawn, if you want to take a look at that, please consider working within our scripting framework. That will reduce the work a lot needed to incorporate your results into the project. I think the scripts are not that complicated, basically all we need are at least functions inst_libgmp, inst_gnutls, inst_gwenhywfar3 and inst_aqbanking3 that work together seamlessly. Maybe the attachments help you a tiny bit. If you have problems, do not hesitate to ask :-) Personally, I am bit slow with emails right now though. Ciao, -- andi5
set_default GMP_URL "ftp://ftp.gnu.org/gnu/gmp/gmp-4.2.2.tar.bz2" set_default GMP_DIR $GLOBAL_DIR\\gmp register_env_var GMP_CPPFLAGS " " register_env_var GMP_LDFLAGS " " function inst_gmp() { setup GMP _GMP_WFSDIR=`win_fs_path $GMP_DIR` _GMP_UDIR=`unix_path $GMP_DIR` add_to_env -I$_GMP_UDIR/include GMP_CPPFLAGS add_to_env -L$_GMP_UDIR/lib GMP_LDFLAGS add_to_env $_GMP_UDIR/bin PATH if quiet ${LD} $GMP_LDFLAGS -lgmp -o $TMP_UDIR/ofile then echo "gmp already installed. skipping." else wget_unpacked $GMP_URL $DOWNLOAD_DIR $TMP_DIR qpushd $TMP_UDIR/gmp-* ./configure \ ${HOST_XCOMPILE} --prefix=${_GMP_UDIR} ABI=32 \ --disable-static --enable-shared make make check make install qpopd fi quiet ${LD} $GMP_LDFLAGS -lgmp -o $TMP_UDIR/ofile || die "gmp not installed correctly" }
set_default GNUTLS_URL "http://josefsson.org/gnutls4win/gnutls-2.4.1.zip" set_default GNUTLS_DIR $GLOBAL_DIR\\gnutls register_env_var GNUTLS_CPPFLAGS " " register_env_var GNUTLS_LDFLAGS " " function inst_gnutls() { setup GnuTLS _GNUTLS_UDIR=`unix_path $GNUTLS_DIR` add_to_env -I$_GNUTLS_UDIR/include GNUTLS_CPPFLAGS add_to_env -L$_GNUTLS_UDIR/lib GNUTLS_LDFLAGS add_to_env $_GNUTLS_UDIR/bin PATH if quiet ${LD} $GNUTLS_LDFLAGS -lgnutls -o $TMP_UDIR/ofile then echo "gnutls already installed. skipping." else mkdir -p $_GNUTLS_UDIR wget_unpacked $GNUTLS_URL $DOWNLOAD_DIR $GNUTLS_DIR rm $_GNUTLS_UDIR/lib/*.la quiet ${LD} $GNUTLS_LDFLAGS -lgnutls -o $TMP_UDIR/ofile || die "gnutls not installed correctly" fi }
signature.asc
Description: This is a digitally signed message part
_______________________________________________ gnucash-devel mailing list gnucash-devel@gnucash.org https://lists.gnucash.org/mailman/listinfo/gnucash-devel