gnucash maint: Don't look for backend libraries in old autotools subdirs.

John Ralls jralls at code.gnucash.org
Thu Jun 7 20:39:43 EDT 2018


Updated	 via  https://github.com/Gnucash/gnucash/commit/cdcb230a (commit)
	from  https://github.com/Gnucash/gnucash/commit/e3e1464a (commit)



commit cdcb230a3183d119bd8c039e11d576cfc32b5509
Author: John Ralls <jralls at ceridwen.us>
Date:   Thu Jun 7 17:38:04 2018 -0700

    Don't look for backend libraries in old autotools subdirs.
    
    Partly addresses Bug 794526

diff --git a/libgnucash/engine/gnc-engine.c b/libgnucash/engine/gnc-engine.c
index 171e3ef..fb68e44 100644
--- a/libgnucash/engine/gnc-engine.c
+++ b/libgnucash/engine/gnc-engine.c
@@ -74,9 +74,9 @@ gnc_engine_init_part2()
     } libs[] =
     {
 #if defined( HAVE_DBI_DBI_H )
-        { "dbi", "gncmod-backend-dbi", TRUE },
+        { "", "gncmod-backend-dbi", TRUE },
 #endif
-        { "xml", "gncmod-backend-xml", TRUE },
+        { "", "gncmod-backend-xml", TRUE },
         { NULL, NULL, FALSE }
     }, *lib;
 



Summary of changes:
 libgnucash/engine/gnc-engine.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list