diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-06-25 16:00:54 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-06-25 16:00:54 +0800 |
commit | 6985fa5f68eef54d066334d2d3dcafb83e7e8084 (patch) | |
tree | 3659f96367b55c1b66c5ffc4bb265304ffb49ebd | |
parent | 1bdd067eeffc40897af2b9b3116497717519cb7b (diff) | |
download | gsoc2013-evolution-6985fa5f68eef54d066334d2d3dcafb83e7e8084.tar.gz gsoc2013-evolution-6985fa5f68eef54d066334d2d3dcafb83e7e8084.tar.zst gsoc2013-evolution-6985fa5f68eef54d066334d2d3dcafb83e7e8084.zip |
Fixed some symbol resolution errors with groupwise-features plugin.
svn path=/trunk/; revision=29584
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/contact-list-editor/Makefile.am | 1 | ||||
-rw-r--r-- | plugins/groupwise-features/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/groupwise-features/Makefile.am | 11 |
4 files changed, 17 insertions, 5 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index fefb06bd1f..f4043860ee 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2005-06-25 Sushma Rai <rsushma@novell.com> + + * gui/contact-list-editor/Makefile.am: Linking to + libevolution-addressbook. + 2005-06-18 Tor Lillqvist <tml@novell.com> * gui/component/Makefile.am diff --git a/addressbook/gui/contact-list-editor/Makefile.am b/addressbook/gui/contact-list-editor/Makefile.am index 71516c33bb..1c01dd16dc 100644 --- a/addressbook/gui/contact-list-editor/Makefile.am +++ b/addressbook/gui/contact-list-editor/Makefile.am @@ -30,6 +30,7 @@ libecontactlisteditor_la_LIBADD = \ $(WIN32_BOOTSTRAP_LIBS) \ $(top_builddir)/addressbook/util/libeabutil.la \ $(top_builddir)/addressbook/gui/contact-editor/libecontacteditor.la \ + $(top_builddir)/addressbook/gui/component/libevolution-addressbook.la \ $(top_builddir)/widgets/table/libetable.la \ $(top_builddir)/widgets/misc/libemiscwidgets.la \ $(top_builddir)/e-util/libeutil.la \ diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog index 7d8eb93844..ec491142c5 100644 --- a/plugins/groupwise-features/ChangeLog +++ b/plugins/groupwise-features/ChangeLog @@ -1,6 +1,11 @@ +2005-06-25 Sushma Rai <rsushma@novell.com> + + * Makefile.am: Linking to libevolution-mail and libevolution-addressbook + 2005-06-24 Sushma Rai <rsushma@novell.com> * org-gnome-groupwise-features.eplug.xml: Set load-on-startup. + 2005-06-18 Tor Lillqvist <tml@novell.com> * org-gnome-groupwise-features.eplug.xml: Use SOEXT. diff --git a/plugins/groupwise-features/Makefile.am b/plugins/groupwise-features/Makefile.am index c1658cceb2..81ea31f6ac 100644 --- a/plugins/groupwise-features/Makefile.am +++ b/plugins/groupwise-features/Makefile.am @@ -27,11 +27,12 @@ liborg_gnome_groupwise_features_la_SOURCES = \ status-track.c \ addressbook-groupwise.c -liborg_gnome_groupwise_features_la_LIBADD= \ - $(EVOLUTION_MAIL_LIBS) \ - $(CAMEL_GROUPWISE_LIBS) \ - $(top_builddir)/e-util/libeutil.la \ - $(top_builddir)/widgets/misc/libemiscwidgets.la +liborg_gnome_groupwise_features_la_LIBADD= \ + $(CAMEL_GROUPWISE_LIBS) \ + $(top_builddir)/e-util/libeutil.la \ + $(top_builddir)/widgets/misc/libemiscwidgets.la \ + $(top_builddir)/mail/libevolution-mail.la \ + $(top_builddir)/addressbook/gui/component/libevolution-addressbook.la |