mirror of
https://github.com/Gnucash/gnucash.git
synced 2026-09-03 20:53:02 -05:00
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:
@@ -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. */
|
||||
|
||||
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user