diff --git a/src/app-utils/app-utils.i b/src/app-utils/app-utils.i index 88a9b2db22..4165bb76ee 100644 --- a/src/app-utils/app-utils.i +++ b/src/app-utils/app-utils.i @@ -66,13 +66,6 @@ void gnc_option_db_set_option_selectable_by_name(SCM guile_option, $result = scm_reverse(list); } -%inline %{ -typedef GList GncCommodityList; - -GncCommodityList * -gnc_commodity_table_get_quotable_commodities(const gnc_commodity_table * table); -%} - gnc_commodity * gnc_default_currency (void); gnc_commodity * gnc_default_report_currency (void); diff --git a/src/engine/engine.scm b/src/engine/engine.scm index 2c7e008d68..4b81587249 100644 --- a/src/engine/engine.scm +++ b/src/engine/engine.scm @@ -10,17 +10,11 @@ (export GNC-RND-ROUND-HALF-UP) (export GNC-RND-ROUND) (export GNC-RND-NEVER) -(export GNC-DENOM-AUTO) (export GNC-DENOM-REDUCE) (export GNC-DENOM-FIXED) (export GNC-DENOM-LCD) (export GNC-DENOM-SIGFIG) (export GNC-DENOM-SIGFIGS) -(export GNC-ERROR-OK) -(export GNC-ERROR-ARG) -(export GNC-ERROR-OVERFLOW) -(export GNC-ERROR-DENOM-DIFF) -(export GNC-ERROR-REMAINDER) (export ) (export gnc:gnc-numeric?) (export gnc:make-gnc-numeric) diff --git a/src/report/utility-reports/test/Makefile.am b/src/report/utility-reports/test/Makefile.am index da26828c50..089b13907f 100644 --- a/src/report/utility-reports/test/Makefile.am +++ b/src/report/utility-reports/test/Makefile.am @@ -1,15 +1,22 @@ TESTS = test-load-module GNC_TEST_DEPS = --gnc-module-dir ${top_builddir}/src/engine \ + --gnc-module-dir ${top_builddir}/src/calculation \ + --gnc-module-dir ${top_builddir}/src/app-utils \ + --gnc-module-dir ${top_builddir}/src/gnome-utils \ + --gnc-module-dir ${top_builddir}/src/html \ --gnc-module-dir ${top_builddir}/src/report/report-system \ --gnc-module-dir ${top_builddir}/src/report/utility-reports \ --guile-load-dir ${top_builddir}/src/gnc-module \ + --guile-load-dir ${top_builddir}/src/scm \ --guile-load-dir ${top_builddir}/src/engine \ - --library-dir ${top_builddir}/src/libqof/qof \ + --guile-load-dir ${top_builddir}/src/core-utils \ + --guile-load-dir ${top_builddir}/src/app-utils \ + --guile-load-dir ${top_builddir}/src/gnome-utils \ + --guile-load-dir ${top_builddir}/src/report/report-system \ + --guile-load-dir ${top_builddir}/src/report/utility-reports \ --library-dir ${top_builddir}/src/core-utils \ - --library-dir ${top_builddir}/src/gnc-module \ - --library-dir ${top_builddir}/src/engine \ - --library-dir ${top_builddir}/src/app-utils + --library-dir ${top_builddir}/src/gnc-module TESTS_ENVIRONMENT = \ $(shell ${top_srcdir}/src/gnc-test-env --no-exports ${GNC_TEST_DEPS})