diff options
author | Tor Lillqvist <tml@novell.com> | 2008-06-13 18:45:31 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-06-13 18:45:31 +0800 |
commit | a378befda0fa816964b6f0c71b5441028f5e0e96 (patch) | |
tree | 74c14d43fb594b6d41555da9b422ce822440016c | |
parent | ef9ac541caa1d7b31a0d2af2e8181cfeed2cf781 (diff) | |
download | gsoc2013-evolution-a378befda0fa816964b6f0c71b5441028f5e0e96.tar.gz gsoc2013-evolution-a378befda0fa816964b6f0c71b5441028f5e0e96.tar.zst gsoc2013-evolution-a378befda0fa816964b6f0c71b5441028f5e0e96.zip |
Add new functions used by libevolution-composer.la.
2008-06-13 Tor Lillqvist <tml@novell.com>
* win32/libevolution-mail.def: Add new functions used by
libevolution-composer.la.
* addressbook/gui/component/Makefile.am
libevolution_addressbook_la_LIBADD): Link with the bootstrap
libevolution-mail library on Windows.
svn path=/trunk/; revision=35636
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/Makefile.am | 5 | ||||
-rw-r--r-- | win32/libevolution-mail.def | 8 |
4 files changed, 23 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-06-13 Tor Lillqvist <tml@novell.com> + + * win32/libevolution-mail.def: Add new functions used by + libevolution-composer.la. + 2008-06-11 Johnny Jacob <jjohnny@novell.com> ** Partially fixes #506393 diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 05a9c45149..58c8e9631a 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2008-06-13 Tor Lillqvist <tml@novell.com> + + * gui/component/Makefile.am (libevolution_addressbook_la_LIBADD): + Link with the bootstrap libevolution-mail library on Windows. + 2008-06-13 Milan Crha <mcrha@redhat.com> ** Part of fix for bug #304029 diff --git a/addressbook/gui/component/Makefile.am b/addressbook/gui/component/Makefile.am index c55b971687..9eec272a0d 100644 --- a/addressbook/gui/component/Makefile.am +++ b/addressbook/gui/component/Makefile.am @@ -1,3 +1,7 @@ +if OS_WIN32 +WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-mail.la +endif + INCLUDES = \ -DG_LOG_DOMAIN=\"evolution-addressbook\" \ -I$(top_srcdir) \ @@ -57,6 +61,7 @@ libevolution_addressbook_la_LIBADD = \ $(top_builddir)/widgets/menus/libmenus.la \ $(top_builddir)/a11y/addressbook/libevolution-addressbook-a11y.la \ $(top_builddir)/addressbook/importers/libevolution-addressbook-importers.la \ + $(WIN32_BOOTSTRAP_LIBS) \ $(EVOLUTION_ADDRESSBOOK_LIBS) $(LDAP_LIBS) diff --git a/win32/libevolution-mail.def b/win32/libevolution-mail.def index 35e75feec6..bed0bee002 100644 --- a/win32/libevolution-mail.def +++ b/win32/libevolution-mail.def @@ -1,4 +1,12 @@ EXPORTS + e_composer_header_table_set_destinations_bcc + e_composer_header_table_set_destinations_to + e_composer_header_table_set_subject + e_composer_header_table_set_subject + e_msg_composer_attach + e_msg_composer_get_header_table + e_msg_composer_new + em_composer_utils_setup_callbacks em_folder_selection_button_get_selection em_folder_selection_button_new em_folder_selection_button_set_selection |