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 \