From 710fe4eb9bdd508e8689d954a945eea5451c21df Mon Sep 17 00:00:00 2001 From: Bill Gribble Date: Thu, 8 Nov 2001 19:15:40 +0000 Subject: [PATCH] Add library dependency and remove gnc-module printout git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5802 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnc-module/gnc-module.c | 6 ------ src/gnome/Makefile.am | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/src/gnc-module/gnc-module.c b/src/gnc-module/gnc-module.c index 211d990ec7..52e71ee409 100644 --- a/src/gnc-module/gnc-module.c +++ b/src/gnc-module/gnc-module.c @@ -424,9 +424,6 @@ gnc_module_load(char * module_name, gint interface) /* module already loaded ... call the init thunk */ if(info->init_func) { - printf("calling init func for '%s' .. refcount = %d\n", - module_name, info->load_count); - if(info->init_func(info->load_count)) { info->load_count++; @@ -467,9 +464,6 @@ gnc_module_load(char * module_name, gint interface) /* now call its init function. this should load any dependent * modules, too. If it doesn't return TRUE unload the module. */ - printf("calling init func for '%s' .. refcount = 0\n", - module_name); - if(!info->init_func(0)) { /* init failed. unload the module. */ diff --git a/src/gnome/Makefile.am b/src/gnome/Makefile.am index 2f822113ba..9119098a44 100644 --- a/src/gnome/Makefile.am +++ b/src/gnome/Makefile.am @@ -10,7 +10,7 @@ libgw_gnc_la_LIBADD = ${G_WRAP_LINK_ARGS} ${GLIB_LIBS} libgw_gnc_la_LDFLAGS = -module libgncgnome_la_LDFLAGS = -module -libgncgnome_la_LIBADD = ${GNOMEUI_LIBS} ${GLIB_LIBS} ${GUILE_LIBS} +libgncgnome_la_LIBADD = ../guile/libgncguile.la ${GNOMEUI_LIBS} ${GLIB_LIBS} ${GUILE_LIBS} libgncgnome_la_SOURCES = \ argv-list-converters.c \