diff options
Diffstat (limited to 'py_eval.cc')
-rw-r--r-- | py_eval.cc | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -19,10 +19,15 @@ void export_parser(); void export_textual(); void export_binary(); void export_qif(); -#ifdef HAVE_XMLPARSE +#ifdef READ_GNUCASH void export_gnucash(); +#endif +#ifdef HAVE_XMLPARSE void export_xml(); #endif +#ifdef HAVE_LIBOFX +void export_ofx(); +#endif void export_option(); void export_config(); void export_walk(); @@ -44,6 +49,12 @@ void initialize_ledger_for_python() #ifdef READ_GNUCASH export_gnucash(); #endif +#ifdef HAVE_XMLPARSE + export_xml(); +#endif +#ifdef HAVE_LIBOFX + export_ofx(); +#endif export_option(); export_config(); export_walk(); |