diff options
author | Bharath Acharya <abharath@novell.com> | 2008-08-12 11:25:12 +0800 |
---|---|---|
committer | Bharath Acharya <abharath@src.gnome.org> | 2008-08-12 11:25:12 +0800 |
commit | 72fc7814faf1821468bae1296893e28fbd9ea5ff (patch) | |
tree | 59015255b390b20f72f5101a24647189d7438410 | |
parent | 434bc25ed6b3f458f3bf119e76bd8b2bcffe5178 (diff) | |
download | gsoc2013-evolution-72fc7814faf1821468bae1296893e28fbd9ea5ff.tar.gz gsoc2013-evolution-72fc7814faf1821468bae1296893e28fbd9ea5ff.tar.zst gsoc2013-evolution-72fc7814faf1821468bae1296893e28fbd9ea5ff.zip |
Added necessary libraries to link to. Build break while compiling on
2008-08-12 Bharath Acharya <abharath@novell.com>
* Makefile.am: Added necessary libraries to link to. Build break
while compiling on Windows.
svn path=/trunk/; revision=35959
-rw-r--r-- | plugins/email-custom-header/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/email-custom-header/Makefile.am | 1 | ||||
-rw-r--r-- | plugins/import-ics-attachments/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/import-ics-attachments/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/webdav-account-setup/ChangeLog | 15 | ||||
-rw-r--r-- | plugins/webdav-account-setup/Makefile.am | 3 |
6 files changed, 30 insertions, 1 deletions
diff --git a/plugins/email-custom-header/ChangeLog b/plugins/email-custom-header/ChangeLog index 7f4dc1918a..0b916dca61 100644 --- a/plugins/email-custom-header/ChangeLog +++ b/plugins/email-custom-header/ChangeLog @@ -1,3 +1,8 @@ +2008-08-12 Bharath Acharya <abharath@novell.com> + + * Makefile.am: Added necessary libraries to link to. Build break while + compiling on Windows. + 2008-08-01 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #543755 diff --git a/plugins/email-custom-header/Makefile.am b/plugins/email-custom-header/Makefile.am index 91a3b52df4..7b23062c4a 100644 --- a/plugins/email-custom-header/Makefile.am +++ b/plugins/email-custom-header/Makefile.am @@ -24,6 +24,7 @@ liborg_gnome_email_custom_header_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/widgets/misc/libemiscwidgets.la \ $(top_builddir)/mail/libevolution-mail.la \ + $(EVOLUTION_MAIL_LIBS) \ $(NO_UNDEFINED_REQUIRED_LIBS) liborg_gnome_email_custom_header_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) diff --git a/plugins/import-ics-attachments/ChangeLog b/plugins/import-ics-attachments/ChangeLog index e92ec7ab39..f2e73712c5 100644 --- a/plugins/import-ics-attachments/ChangeLog +++ b/plugins/import-ics-attachments/ChangeLog @@ -1,3 +1,8 @@ +2008-08-12 Bharath Acharya <abharath@novell.com> + + * Makefile.am: Added necessary libraries to link to. Build break while + compiling on Windows. + 2008-08-11 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #546892 diff --git a/plugins/import-ics-attachments/Makefile.am b/plugins/import-ics-attachments/Makefile.am index 30331d0c01..7f7caf3a21 100644 --- a/plugins/import-ics-attachments/Makefile.am +++ b/plugins/import-ics-attachments/Makefile.am @@ -24,6 +24,8 @@ liborg_gnome_evolution_mail_attachments_import_ics_la_LDFLAGS = -module -avoid-v liborg_gnome_evolution_mail_attachments_import_ics_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/mail/libevolution-mail.la \ + $(top_builddir)/calendar/common/libevolution-calendarprivate.la \ + $(EVOLUTION_CALENDAR_LIBS) \ $(EVOLUTION_MAIL_LIBS) EXTRA_DIST = org-gnome-evolution-mail-attachments-import-ics.eplug.xml diff --git a/plugins/webdav-account-setup/ChangeLog b/plugins/webdav-account-setup/ChangeLog new file mode 100644 index 0000000000..0a512b4dd3 --- /dev/null +++ b/plugins/webdav-account-setup/ChangeLog @@ -0,0 +1,15 @@ +2008-08-12 Bharath Acharya <abharath@novell.com> + + * Makefile.am: Added necessary libraries to link to. Build break while + compiling on Windows. Added a ChangeLog file for webdav-account-setup + plugin. + +2008-08-04 Matthias Braun <matze@braunis.de> + + ** Fix for bug #544051 + + ** Added WebDAV plugin + * Makefile.am: + * org-gnome-evolution-webdav.eplug.xml: + * webdav-contacts-source.c: + WebDAV backend for addressbook - GUI plugin for account setup. diff --git a/plugins/webdav-account-setup/Makefile.am b/plugins/webdav-account-setup/Makefile.am index ea2ea5fdcb..5637f76e66 100644 --- a/plugins/webdav-account-setup/Makefile.am +++ b/plugins/webdav-account-setup/Makefile.am @@ -12,7 +12,8 @@ liborg_gnome_evolution_webdav_la_SOURCES = \ webdav-contacts-source.c liborg_gnome_evolution_webdav_la_LIBADD = \ - $(EPLUGIN_LIBS) + $(EPLUGIN_LIBS) \ + $(EVOLUTION_ADDRESSBOOK_LIBS) liborg_gnome_evolution_webdav_la_LDFLAGS = -module -avoid-version $(NO_UNDEFINED) |