Update to libofx 0.9.1.
Use gettext MODULE, and finally depend on textproc/opensp, like it should have been since i ported this ages ago. ok ajacoutot@ jasper@
This commit is contained in:
parent
d2aed495d0
commit
10139435ff
@ -1,15 +1,15 @@
|
||||
# $OpenBSD: Makefile,v 1.2 2007/09/16 02:53:00 merdely Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2009/11/24 20:32:35 landry Exp $
|
||||
|
||||
COMMENT= opensource implementation of the OFX specification
|
||||
|
||||
DISTNAME= libofx-0.8.3
|
||||
DISTNAME= libofx-0.9.1
|
||||
CATEGORIES= devel
|
||||
|
||||
HOMEPAGE= http://libofx.sourceforge.net/
|
||||
|
||||
MAINTAINER= Landry Breuil <gaston@gcu.info>
|
||||
|
||||
SHARED_LIBS= ofx 3.1 # .3.1
|
||||
SHARED_LIBS= ofx 4.0 # .4.0
|
||||
|
||||
# GPLv2
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
@ -19,17 +19,18 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libofx/}
|
||||
|
||||
WANTLIB= c m stdc++
|
||||
MODULES= devel/gettext
|
||||
WANTLIB= c m pthread stdc++
|
||||
|
||||
LIB_DEPENDS= ::textproc/sp
|
||||
LIB_DEPENDS= osp::textproc/opensp
|
||||
|
||||
USE_LIBTOOL= Yes
|
||||
|
||||
CONFIGURE_STYLE=gnu
|
||||
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -lm"
|
||||
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -lm" \
|
||||
CPPFLAGS="-I${LOCALBASE}/include"
|
||||
|
||||
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
||||
--with-opensp-libs=${LOCALBASE}/lib \
|
||||
--with-opensp-includes=${LOCALBASE}/include/sp \
|
||||
--without-libcurl \
|
||||
--disable-doxygen \
|
||||
--disable-dot \
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (libofx-0.8.3.tar.gz) = Ju80Pr+T3GNRyImkAuENiQ==
|
||||
RMD160 (libofx-0.8.3.tar.gz) = pcms1q9M4lLVoJQcgkNq9ylhzXw=
|
||||
SHA1 (libofx-0.8.3.tar.gz) = D6IvBTXB9Q1LkFb2+G0UKfHISF8=
|
||||
SHA256 (libofx-0.8.3.tar.gz) = vLpD6SRo/AB7QK8mPtIpxINLC2XNVW/UVlMMBQnkbOQ=
|
||||
SIZE (libofx-0.8.3.tar.gz) = 971250
|
||||
MD5 (libofx-0.9.1.tar.gz) = 5jT0fKEugthgkS1IyTuOUA==
|
||||
RMD160 (libofx-0.9.1.tar.gz) = hLE5yzkAb49kM9SQ1y6D8QMVaVI=
|
||||
SHA1 (libofx-0.9.1.tar.gz) = oSEQ3cv/WW4mSWhlVw+03LdcCNA=
|
||||
SHA256 (libofx-0.9.1.tar.gz) = Mhs0vzA2xa9qKrRGB97O44ssfnm7ZMnsbZjdsY+yyj8=
|
||||
SIZE (libofx-0.9.1.tar.gz) = 1177818
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2007/03/19 10:50:16 ajacoutot Exp $
|
||||
--- Makefile.in.orig Thu Mar 15 10:51:00 2007
|
||||
+++ Makefile.in Thu Mar 15 10:51:55 2007
|
||||
@@ -672,7 +672,7 @@ info: info-recursive
|
||||
$OpenBSD: patch-Makefile_in,v 1.2 2009/11/24 20:32:35 landry Exp $
|
||||
--- Makefile.in.orig Mon Feb 9 21:19:13 2009
|
||||
+++ Makefile.in Wed Mar 25 20:24:47 2009
|
||||
@@ -680,7 +680,7 @@ info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
|
@ -1,18 +1,12 @@
|
||||
--- configure.orig Tue Jan 9 05:29:27 2007
|
||||
+++ configure Wed Feb 28 22:39:40 2007
|
||||
@@ -20639,12 +20639,12 @@ fi
|
||||
$OpenBSD: patch-configure,v 1.2 2009/11/24 20:32:35 landry Exp $
|
||||
--- configure.orig Wed Mar 25 22:00:04 2009
|
||||
+++ configure Wed Mar 25 22:00:25 2009
|
||||
@@ -21111,7 +21111,7 @@ fi
|
||||
done
|
||||
|
||||
|
||||
-OPENSPLIBS="-L$OPENSPLIBPATH -losp"
|
||||
+OPENSPLIBS="-L$OPENSPLIBPATH -lsp"
|
||||
+OPENSPLIBS="-L$OPENSPLIBPATH -losp -pthread"
|
||||
ac_save_LIBS="$LIBS"
|
||||
LIBS="$OPENSPLIBS $LIBS"
|
||||
|
||||
-{ echo "$as_me:$LINENO: checking for libosp" >&5
|
||||
-echo $ECHO_N "checking for libosp... $ECHO_C" >&6; }
|
||||
+{ echo "$as_me:$LINENO: checking for libsp" >&5
|
||||
+echo $ECHO_N "checking for libsp... $ECHO_C" >&6; }
|
||||
##dnl This is code from the opensp documentation, I modified it a little
|
||||
##dnl It is really just a link test rather than a run test, it does nothing
|
||||
ac_ext=cpp
|
||||
|
@ -1,10 +1,13 @@
|
||||
$OpenBSD: patch-libofx_pc_in,v 1.1.1.1 2007/03/19 10:50:16 ajacoutot Exp $
|
||||
--- libofx.pc.in.orig Thu Mar 15 16:17:13 2007
|
||||
+++ libofx.pc.in Thu Mar 15 16:17:43 2007
|
||||
@@ -10,5 +10,5 @@ Description: libofx is a library for pro
|
||||
$OpenBSD: patch-libofx_pc_in,v 1.2 2009/11/24 20:32:35 landry Exp $
|
||||
--- libofx.pc.in.orig Sat Oct 27 09:40:29 2007
|
||||
+++ libofx.pc.in Wed Mar 25 22:24:26 2009
|
||||
@@ -10,7 +10,5 @@ Description: libofx is a library for processing Open F
|
||||
Version: @VERSION@
|
||||
Requires:
|
||||
Conflicts:
|
||||
-Libs: -L${libdir} @OPENSPLIBS@ -lofx
|
||||
-#Libs: -L${libdir} @OPENSPLIBS@ -lofx
|
||||
-#Cflags: -I${includedir} -I@OPENSPINCLUDES@
|
||||
-Libs: -L${libdir} -lofx
|
||||
-Cflags: -I${includedir}
|
||||
+Libs: -L${libdir} -lofx @OPENSPLIBS@
|
||||
Cflags: -I${includedir} -I@OPENSPINCLUDES@
|
||||
+Cflags: -I${includedir} -I@OPENSPINCLUDES@
|
||||
|
@ -1,7 +1,7 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2007/03/19 10:50:16 ajacoutot Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2009/11/24 20:32:35 landry Exp $
|
||||
%%SHARED%%
|
||||
bin/ofx2qif
|
||||
bin/ofxdump
|
||||
@bin bin/ofx2qif
|
||||
@bin bin/ofxdump
|
||||
include/libofx/
|
||||
include/libofx/libofx.h
|
||||
lib/libofx.a
|
||||
@ -62,9 +62,13 @@ share/doc/libofx/html/classtree_1_1pre__order__iterator.png
|
||||
share/doc/libofx/html/classtree_1_1sibling__iterator.html
|
||||
share/doc/libofx/html/classtree_1_1sibling__iterator.png
|
||||
share/doc/libofx/html/classtree__node__.html
|
||||
share/doc/libofx/html/cmdline_8c-source.html
|
||||
share/doc/libofx/html/cmdline_8h-source.html
|
||||
share/doc/libofx/html/cmdline_8h.html
|
||||
share/doc/libofx/html/config_8h-source.html
|
||||
share/doc/libofx/html/context_8cpp-source.html
|
||||
share/doc/libofx/html/context_8hh-source.html
|
||||
share/doc/libofx/html/deprecated.html
|
||||
share/doc/libofx/html/doxygen.css
|
||||
share/doc/libofx/html/doxygen.png
|
||||
share/doc/libofx/html/file__preproc_8cpp-source.html
|
||||
@ -110,72 +114,109 @@ share/doc/libofx/html/functions_eval.html
|
||||
share/doc/libofx/html/functions_func.html
|
||||
share/doc/libofx/html/functions_type.html
|
||||
share/doc/libofx/html/functions_vars.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2context_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2context_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2file__preproc_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2file__preproc_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2file__preproc_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2file__preproc_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2getopt1_8c-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2getopt_8c-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2gnugetopt_8h-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2messages_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2messages_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2messages_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2messages_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofc__sgml_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofc__sgml_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofc__sgml_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofc__sgml_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__aggregate_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__aggregate_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__account_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__account_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__generic_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__generic_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__main_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__main_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__security_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__security_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__statement_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__statement_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__transaction_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__container__transaction_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__containers_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__containers_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__containers__misc_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__containers__misc_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__error__msg_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__error__msg_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__preproc_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__preproc_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__preproc_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__preproc_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__accountinfo_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__accountinfo_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__accountinfo_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__accountinfo_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__statement_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__statement_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__statement_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__request__statement_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__sgml_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__sgml_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__sgml_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__sgml_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__utilities_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__utilities_8cpp.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__utilities_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2ofx__utilities_8hh.html
|
||||
share/doc/libofx/html/fx-0_88_82_2lib_2tree_8hh-source.html
|
||||
share/doc/libofx/html/functions_vars_0x62.html
|
||||
share/doc/libofx/html/functions_vars_0x63.html
|
||||
share/doc/libofx/html/functions_vars_0x64.html
|
||||
share/doc/libofx/html/functions_vars_0x65.html
|
||||
share/doc/libofx/html/functions_vars_0x66.html
|
||||
share/doc/libofx/html/functions_vars_0x68.html
|
||||
share/doc/libofx/html/functions_vars_0x69.html
|
||||
share/doc/libofx/html/functions_vars_0x6c.html
|
||||
share/doc/libofx/html/functions_vars_0x6d.html
|
||||
share/doc/libofx/html/functions_vars_0x6e.html
|
||||
share/doc/libofx/html/functions_vars_0x6f.html
|
||||
share/doc/libofx/html/functions_vars_0x70.html
|
||||
share/doc/libofx/html/functions_vars_0x72.html
|
||||
share/doc/libofx/html/functions_vars_0x73.html
|
||||
share/doc/libofx/html/functions_vars_0x74.html
|
||||
share/doc/libofx/html/functions_vars_0x75.html
|
||||
share/doc/libofx/html/functions_vars_0x76.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2context_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2context_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2file__preproc_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2file__preproc_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2file__preproc_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2file__preproc_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2getopt1_8c-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2getopt_8c-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2gnugetopt_8h-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2messages_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2messages_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2messages_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2messages_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofc__sgml_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofc__sgml_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofc__sgml_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofc__sgml_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__aggregate_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__aggregate_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__account_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__account_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__generic_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__generic_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__main_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__main_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__security_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__security_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__statement_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__statement_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__transaction_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__container__transaction_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__containers_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__containers_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__containers__misc_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__containers__misc_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__error__msg_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__error__msg_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__preproc_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__preproc_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__preproc_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__preproc_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__accountinfo_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__statement_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__statement_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__statement_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__request__statement_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__sgml_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__sgml_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__sgml_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__sgml_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__utilities_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__utilities_8cpp.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__utilities_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2ofx__utilities_8hh.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2tree_8hh-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2win32_8cpp-source.html
|
||||
share/doc/libofx/html/fx-0_89_81_2lib_2win32_8hh-source.html
|
||||
share/doc/libofx/html/getopt1_8c-source.html
|
||||
share/doc/libofx/html/getopt_8c-source.html
|
||||
share/doc/libofx/html/globals.html
|
||||
share/doc/libofx/html/globals_defs.html
|
||||
share/doc/libofx/html/globals_0x62.html
|
||||
share/doc/libofx/html/globals_0x63.html
|
||||
share/doc/libofx/html/globals_0x64.html
|
||||
share/doc/libofx/html/globals_0x65.html
|
||||
share/doc/libofx/html/globals_0x66.html
|
||||
share/doc/libofx/html/globals_0x67.html
|
||||
share/doc/libofx/html/globals_0x69.html
|
||||
share/doc/libofx/html/globals_0x6b.html
|
||||
share/doc/libofx/html/globals_0x6c.html
|
||||
share/doc/libofx/html/globals_0x6d.html
|
||||
share/doc/libofx/html/globals_0x6f.html
|
||||
share/doc/libofx/html/globals_0x70.html
|
||||
share/doc/libofx/html/globals_0x71.html
|
||||
share/doc/libofx/html/globals_0x72.html
|
||||
share/doc/libofx/html/globals_0x73.html
|
||||
share/doc/libofx/html/globals_0x74.html
|
||||
share/doc/libofx/html/globals_0x75.html
|
||||
share/doc/libofx/html/globals_0x76.html
|
||||
share/doc/libofx/html/globals_0x77.html
|
||||
share/doc/libofx/html/globals_enum.html
|
||||
share/doc/libofx/html/globals_eval.html
|
||||
share/doc/libofx/html/globals_func.html
|
||||
@ -186,8 +227,8 @@ share/doc/libofx/html/hierarchy.html
|
||||
share/doc/libofx/html/inc_2libofx_8h-source.html
|
||||
share/doc/libofx/html/inc_2libofx_8h.html
|
||||
share/doc/libofx/html/index.html
|
||||
share/doc/libofx/html/libofx-0_88_82_2inc_2libofx_8h-source.html
|
||||
share/doc/libofx/html/libofx-0_88_82_2inc_2libofx_8h.html
|
||||
share/doc/libofx/html/libofx-0_89_81_2inc_2libofx_8h-source.html
|
||||
share/doc/libofx/html/libofx-0_89_81_2inc_2libofx_8h.html
|
||||
share/doc/libofx/html/main.html
|
||||
share/doc/libofx/html/main__doc_8c-source.html
|
||||
share/doc/libofx/html/messages_8cpp-source.html
|
||||
@ -262,10 +303,10 @@ share/doc/libofx/html/ofxpartner_8cpp-source.html
|
||||
share/doc/libofx/html/ofxpartner_8cpp.html
|
||||
share/doc/libofx/html/ofxpartner_8h-source.html
|
||||
share/doc/libofx/html/ofxpartner_8h.html
|
||||
share/doc/libofx/html/pages.html
|
||||
share/doc/libofx/html/structErrorMsg.html
|
||||
share/doc/libofx/html/structLibofxFileFormatInfo.html
|
||||
share/doc/libofx/html/structOfxAccountData.html
|
||||
share/doc/libofx/html/structOfxAccountInfo.html
|
||||
share/doc/libofx/html/structOfxCurrency.html
|
||||
share/doc/libofx/html/structOfxFiLogin.html
|
||||
share/doc/libofx/html/structOfxFiServiceInfo.html
|
||||
@ -275,6 +316,8 @@ share/doc/libofx/html/structOfxSecurityData.html
|
||||
share/doc/libofx/html/structOfxStatementData.html
|
||||
share/doc/libofx/html/structOfxStatusData.html
|
||||
share/doc/libofx/html/structOfxTransactionData.html
|
||||
share/doc/libofx/html/structcmdline__parser__params.html
|
||||
share/doc/libofx/html/structgengetopt__args__info.html
|
||||
share/doc/libofx/html/structoption.html
|
||||
share/doc/libofx/html/tab_b.gif
|
||||
share/doc/libofx/html/tab_l.gif
|
||||
@ -282,6 +325,8 @@ share/doc/libofx/html/tab_r.gif
|
||||
share/doc/libofx/html/tabs.css
|
||||
share/doc/libofx/html/tree.html
|
||||
share/doc/libofx/html/tree_8hh-source.html
|
||||
share/doc/libofx/html/win32_8cpp-source.html
|
||||
share/doc/libofx/html/win32_8hh-source.html
|
||||
share/libofx/
|
||||
share/libofx/dtd/
|
||||
share/libofx/dtd/ofc.dtd
|
||||
|
Loading…
x
Reference in New Issue
Block a user