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
This commit is contained in:
Bill Gribble
2001-11-08 19:15:40 +00:00
parent ef1786df1c
commit 710fe4eb9b
2 changed files with 1 additions and 7 deletions
-6
View File
@@ -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. */
+1 -1
View File
@@ -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 \