diff options
author | Not Zed <NotZed@Ximian.com> | 2005-05-25 18:51:36 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-05-25 18:51:36 +0800 |
commit | 5d1ad7fc3d886d30f6c33852d6c481d48edaaf11 (patch) | |
tree | cd897222a57dc5c92cf35fcdf249009f9fe3ae59 /e-util/Makefile.am | |
parent | b4a3d3cb49861ba70136e3fa58ab0c3e90cae8b3 (diff) | |
download | gsoc2013-evolution-5d1ad7fc3d886d30f6c33852d6c481d48edaaf11.tar.gz gsoc2013-evolution-5d1ad7fc3d886d30f6c33852d6c481d48edaaf11.tar.zst gsoc2013-evolution-5d1ad7fc3d886d30f6c33852d6c481d48edaaf11.zip |
Removed, these are now implemented as a plugin.
2005-05-25 Not Zed <NotZed@Ximian.com>
* e-plugin-mono.[ch]: Removed, these are now implemented as a
plugin.
* e-plugin.c (ep_load_plugin): separate out plugin xml loading
code from the loading loop. If a plugin type doesn't exist, then
save it in a list for later checking.
(ep_load): call above to do the work.
(e_plugin_register_type): check the pending doc list, if any
plugins now have a type, load them.
(e_plugin_type_hook_get_type): a plugin hook for registering new
plugin types ('loaders') at runtime.
svn path=/trunk/; revision=29412
Diffstat (limited to 'e-util/Makefile.am')
-rw-r--r-- | e-util/Makefile.am | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 25db475676..e6182ce2b7 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -1,11 +1,6 @@ eutilincludedir = $(privincludedir)/e-util econdincludedir = $(privincludedir)/e-conduit -if ENABLE_MONO -MONOHEADERS = e-plugin-mono.h -MONOSOURCES = e-plugin-mono.c -endif - INCLUDES = \ -I$(top_srcdir) \ -DEVOLUTION_IMAGES=\""$(imagesdir)"\" \ @@ -54,8 +49,7 @@ eutilinclude_HEADERS = \ e-signature-list.h \ e-time-utils.h \ e-uid.h \ - md5-utils.h \ - $(MONOHEADERS) + md5-utils.h libeutil_la_SOURCES = \ $(MARSHAL_GENERATED) \ @@ -96,8 +90,7 @@ libeutil_la_SOURCES = \ e-uid.c \ eggtrayicon.c \ eggtrayicon.h \ - md5-utils.c \ - $(MONOSOURCES) + md5-utils.c MARSHAL_GENERATED = e-util-marshal.c e-util-marshal.h @EVO_MARSHAL_RULE@ |