* move gnc-gtk-utils from core-utils to gnome-utils because

core-utils should not depend on gtk.



git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14626 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2006-08-09 17:48:00 +00:00
parent 7d8e8f9107
commit e71180c16a
6 changed files with 11 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2006-08-09 Derek Atkins <derek@ihtfp.com>
* move gnc-gtk-utils from core-utils to gnome-utils because
core-utils should not depend on gtk.
2006-08-08 Christian Stimming <stimming@tuhh.de> 2006-08-08 Christian Stimming <stimming@tuhh.de>
* configure.in, src/gnome-utils/schemas/Makefile.am: Find absolute * configure.in, src/gnome-utils/schemas/Makefile.am: Find absolute

View File

@ -6,13 +6,11 @@ libcore_utils_la_SOURCES = \
gnc-gdate-utils.c \ gnc-gdate-utils.c \
gnc-gkeyfile-utils.c \ gnc-gkeyfile-utils.c \
gnc-glib-utils.c \ gnc-glib-utils.c \
gnc-gobject-utils.c \ gnc-gobject-utils.c
gnc-gtk-utils.c
libcore_utils_la_LIBADD = \ libcore_utils_la_LIBADD = \
${GLIB_LIBS} \ ${GLIB_LIBS} \
${GCONF_LIBS} \ ${GCONF_LIBS}
${GTK_LIBS}
nodist_libgw_core_utils_la_SOURCES = \ nodist_libgw_core_utils_la_SOURCES = \
gw-core-utils.c gw-core-utils.c
@ -29,8 +27,7 @@ noinst_HEADERS = \
gnc-gdate-utils.h \ gnc-gdate-utils.h \
gnc-gkeyfile-utils.h \ gnc-gkeyfile-utils.h \
gnc-glib-utils.h \ gnc-glib-utils.h \
gnc-gobject-utils.h \ gnc-gobject-utils.h
gnc-gtk-utils.h
EXTRA_DIST = ${gwmod_DATA} EXTRA_DIST = ${gwmod_DATA}
@ -38,8 +35,7 @@ AM_CFLAGS = \
${G_WRAP_COMPILE_ARGS} \ ${G_WRAP_COMPILE_ARGS} \
${GUILE_INCS} \ ${GUILE_INCS} \
${GLIB_CFLAGS} \ ${GLIB_CFLAGS} \
${GCONF_CFLAGS} \ ${GCONF_CFLAGS}
${GTK_CFLAGS}
gwmoddir = ${GNC_GWRAP_LIBDIR} gwmoddir = ${GNC_GWRAP_LIBDIR}
gwmod_DATA = gw-core-utils-spec.scm gwmod_DATA = gw-core-utils-spec.scm

View File

@ -26,10 +26,6 @@
#include <stdio.h> #include <stdio.h>
#include "gnc-gobject-utils.h" #include "gnc-gobject-utils.h"
#include <gtk/gtk.h> // For gtk_main_quit(). Can't get this to work with
// a g_source attached to the main glib context.
static void gnc_gobject_weak_cb (gpointer user_data, GObject *object); static void gnc_gobject_weak_cb (gpointer user_data, GObject *object);
/************************************************************/ /************************************************************/

View File

@ -66,6 +66,7 @@ libgncmod_gnome_utils_la_SOURCES = \
gnc-recurrence.c \ gnc-recurrence.c \
gnc-general-select.c \ gnc-general-select.c \
gnc-gnome-utils.c \ gnc-gnome-utils.c \
gnc-gtk-utils.c \
gnc-gui-query.c \ gnc-gui-query.c \
gnc-html-graph-gog.c \ gnc-html-graph-gog.c \
gnc-html-history.c \ gnc-html-history.c \
@ -132,6 +133,7 @@ gncinclude_HEADERS = \
gnc-recurrence.h \ gnc-recurrence.h \
gnc-general-select.h \ gnc-general-select.h \
gnc-gnome-utils.h \ gnc-gnome-utils.h \
gnc-gtk-utils.h \
gnc-gui-query.h \ gnc-gui-query.h \
gnc-html-graph-gog.h \ gnc-html-graph-gog.h \
gnc-html-history.h \ gnc-html-history.h \