diff options
author | JP Rosevear <jpr@ximian.com> | 2003-11-15 06:27:34 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-11-15 06:27:34 +0800 |
commit | c02fe8b8c2867fa647cd5dd820cfc7650e0ed5f1 (patch) | |
tree | 523fc0174f21241d8a19ad48afbf603da98e69eb /widgets | |
parent | c9d5c9e425fe475ed91676e7c5ed9339a6ad7762 (diff) | |
download | gsoc2013-evolution-c02fe8b8c2867fa647cd5dd820cfc7650e0ed5f1.tar.gz gsoc2013-evolution-c02fe8b8c2867fa647cd5dd820cfc7650e0ed5f1.tar.zst gsoc2013-evolution-c02fe8b8c2867fa647cd5dd820cfc7650e0ed5f1.zip |
make source selector flags/libs
2003-11-14 JP Rosevear <jpr@ximian.com>
* configure.in: make source selector flags/libs
svn path=/trunk/; revision=23366
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/ChangeLog | 6 | ||||
-rw-r--r-- | widgets/misc/Makefile.am | 7 | ||||
-rw-r--r-- | widgets/misc/e-source-selector.h | 4 |
3 files changed, 11 insertions, 6 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 6bf5eb11a1..c9721e031e 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,9 @@ +2003-11-14 JP Rosevear <jpr@ximian.com> + + * e-source-selector.h: include e-source stuff from e-d-s + + * Makefile.am: use new cflags/libs to build + 2003-11-13 Bolian Yin <bolian.yin@sun.com> * e-calendar-item.c: remove a declaration of a deleted func. diff --git a/widgets/misc/Makefile.am b/widgets/misc/Makefile.am index f600183ae9..587962f220 100644 --- a/widgets/misc/Makefile.am +++ b/widgets/misc/Makefile.am @@ -8,7 +8,7 @@ INCLUDES = \ -DMAP_DIR=\""$(imagesdir)"\" \ -DG_LOG_DOMAIN=__FILE__ \ -DG_DISABLE_DEPRECATED \ - $(GNOME_FULL_CFLAGS) + $(SOURCE_SEL_CFLAGS) privlib_LTLIBRARIES = \ libemiscwidgets.la @@ -61,7 +61,8 @@ MARSHAL_GENERATED = e-util-marshal.c e-util-marshal.h @EVO_MARSHAL_RULE@ libemiscwidgets_la_LIBADD = $(top_builddir)/e-util/libeutil.la \ - $(top_builddir)/a11y/widgets/libevolution-widgets-a11y.la + $(top_builddir)/a11y/widgets/libevolution-widgets-a11y.la \ + $(SOURCE_SEL_LIBS) noinst_LTLIBRARIES = libefilterbar.la @@ -133,7 +134,7 @@ test_source_selector_SOURCES = \ test_source_selector_LDADD = \ ../../e-util/libeutil.la \ ./libemiscwidgets.la \ - $(GNOME_FULL_LIBS) + $(SOURCE_SEL_LIBS) BUILT_SOURCES = $(MARSHAL_GENERATED) diff --git a/widgets/misc/e-source-selector.h b/widgets/misc/e-source-selector.h index 3880d86ac5..8d3540866d 100644 --- a/widgets/misc/e-source-selector.h +++ b/widgets/misc/e-source-selector.h @@ -24,11 +24,9 @@ #ifndef _E_SOURCE_SELECTOR_H_ #define _E_SOURCE_SELECTOR_H_ -#include "e-util/e-source-list.h" - #include <gtk/gtkmenu.h> #include <gtk/gtktreeview.h> - +#include <libedataserver/e-source-list.h> #define E_TYPE_SOURCE_SELECTOR (e_source_selector_get_type ()) #define E_SOURCE_SELECTOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_SOURCE_SELECTOR, ESourceSelector)) |