[PATCH] Fixed many LIBADD lists in some Makefile.am



---
 composer/Makefile.am                     |    4 +++-
 mail/Makefile.am                         |    3 +++
 modules/mail/Makefile.am                 |    6 +++++-
 plugins/email-custom-header/Makefile.am  |    1 +
 plugins/groupwise-features/Makefile.am   |    1 +
 plugins/mail-notification/Makefile.am    |    4 +++-
 plugins/mailing-list-actions/Makefile.am |    1 +
 plugins/templates/Makefile.am            |    1 +
 8 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/composer/Makefile.am b/composer/Makefile.am
index 6264266..bd2a285 100644
--- a/composer/Makefile.am
+++ b/composer/Makefile.am
@@ -60,7 +60,9 @@ libcomposer_la_LIBADD =					\
 	$(top_builddir)/shell/libeshell.la		\
 	$(top_builddir)/em-format/libemformat.la	\
 	$(top_builddir)/addressbook/gui/contact-editor/libecontacteditor.la		\
-	$(top_builddir)/addressbook/gui/contact-list-editor/libecontactlisteditor.la
+	$(top_builddir)/addressbook/gui/contact-list-editor/libecontactlisteditor.la	\
+	$(top_builddir)/e-util/libeutil.la		\
+	$(EVOLUTION_MAIL_LIBS)
 
 uidir = $(evolutionuidir)
 ui_DATA = evolution-composer.ui
diff --git a/mail/Makefile.am b/mail/Makefile.am
index 80777de..5a950d8 100644
--- a/mail/Makefile.am
+++ b/mail/Makefile.am
@@ -159,6 +159,8 @@ endif
 libevolution_mail_la_LIBADD =				\
 	$(top_builddir)/e-util/libeutil.la		\
 	$(top_builddir)/shell/libeshell.la		\
+	$(top_builddir)/filter/libfilter.la		\
+	$(top_builddir)/em-format/libemformat.la	\
 	$(top_builddir)/composer/libcomposer.la		\
 	$(top_builddir)/widgets/table/libetable.la	\
 	$(top_builddir)/widgets/text/libetext.la	\
@@ -166,6 +168,7 @@ libevolution_mail_la_LIBADD =				\
 	$(top_builddir)/addressbook/gui/contact-editor/libecontacteditor.la \
 	$(top_builddir)/addressbook/gui/contact-list-editor/libecontactlisteditor.la \
 	$(GNOME_PLATFORM_LIBS)				\
+	$(EVOLUTION_MAIL_LIBS)				\
 	$(CANBERRA_LIBS)				\
 	$(GTKHTML_LIBS)					\
 	$(SMIME_LIBS)
diff --git a/modules/mail/Makefile.am b/modules/mail/Makefile.am
index 962fc61..9a695de 100644
--- a/modules/mail/Makefile.am
+++ b/modules/mail/Makefile.am
@@ -50,13 +50,17 @@ libevolution_module_mail_la_SOURCES =					\
 libevolution_module_mail_la_LIBADD =					\
 	$(top_builddir)/e-util/libeutil.la				\
 	$(top_builddir)/shell/libeshell.la				\
+	$(top_builddir)/filter/libfilter.la				\
+	$(top_builddir)/em-format/libemformat.la			\
 	$(top_builddir)/composer/libcomposer.la				\
 	$(top_builddir)/widgets/table/libetable.la			\
 	$(top_builddir)/widgets/text/libetext.la			\
 	$(top_builddir)/widgets/misc/libemiscwidgets.la			\
+	$(top_builddir)/widgets/menus/libmenus.la			\
 	$(top_builddir)/mail/libevolution-mail.la			\
 	$(top_builddir)/mail/importers/libevolution-mail-importers.la	\
-	$(GNOME_PLATFORM_LIBS)
+	$(GNOME_PLATFORM_LIBS)						\
+	$(EVOLUTION_MAIL_LIBS)
 
 libevolution_module_mail_la_LDFLAGS =					\
 	-avoid-version -module $(NO_UNDEFINED)
diff --git a/plugins/email-custom-header/Makefile.am b/plugins/email-custom-header/Makefile.am
index 9e827eb..976da5f 100644
--- a/plugins/email-custom-header/Makefile.am
+++ b/plugins/email-custom-header/Makefile.am
@@ -25,6 +25,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 		\
+	$(top_builddir)/composer/libcomposer.la			\
 	$(GNOME_PLATFORM_LIBS)					\
 	$(EVOLUTION_MAIL_LIBS)
 
diff --git a/plugins/groupwise-features/Makefile.am b/plugins/groupwise-features/Makefile.am
index 52e33fe..aea545b 100644
--- a/plugins/groupwise-features/Makefile.am
+++ b/plugins/groupwise-features/Makefile.am
@@ -55,6 +55,7 @@ liborg_gnome_groupwise_features_la_LIBADD=			\
 	$(top_builddir)/widgets/misc/libemiscwidgets.la		\
 	$(top_builddir)/filter/libfilter.la			\
 	$(top_builddir)/mail/libevolution-mail.la		\
+	$(top_builddir)/composer/libcomposer.la			\
 	$(EVOLUTION_CALENDAR_LIBS)				\
 	$(EVOLUTION_MAIL_LIBS)					\
 	$(CAMEL_GROUPWISE_LIBS)
diff --git a/plugins/mail-notification/Makefile.am b/plugins/mail-notification/Makefile.am
index ddd1b51..0171926 100644
--- a/plugins/mail-notification/Makefile.am
+++ b/plugins/mail-notification/Makefile.am
@@ -30,8 +30,10 @@ liborg_gnome_mail_notification_la_LIBADD = 		\
 	$(CANBERRA_LIBS)				\
 	$(LIBNOTIFY_LIBS)				\
 	$(top_builddir)/e-util/libeutil.la 		\
+	$(top_builddir)/shell/libeshell.la		\
 	$(top_builddir)/mail/libevolution-mail.la	\
-	$(GNOME_PLATFORM_LIBS)
+	$(GNOME_PLATFORM_LIBS)				\
+	$(EVOLUTION_MAIL_LIBS)
 
 schemadir       = $(GCONF_SCHEMA_FILE_DIR)
 schema_in_files = apps-evolution-mail-notification.schemas.in
diff --git a/plugins/mailing-list-actions/Makefile.am b/plugins/mailing-list-actions/Makefile.am
index 8755684..32ce3a1 100644
--- a/plugins/mailing-list-actions/Makefile.am
+++ b/plugins/mailing-list-actions/Makefile.am
@@ -18,6 +18,7 @@ liborg_gnome_mailing_list_actions_la_LDFLAGS = -module -avoid-version $(NO_UNDEF
 liborg_gnome_mailing_list_actions_la_LIBADD =		\
 	$(top_builddir)/e-util/libeutil.la		\
 	$(top_builddir)/mail/libevolution-mail.la	\
+	$(top_builddir)/composer/libcomposer.la		\
 	$(top_builddir)/shell/libeshell.la		\
 	$(GNOME_PLATFORM_LIBS)				\
 	$(EVOLUTION_MAIL_LIBS)
diff --git a/plugins/templates/Makefile.am b/plugins/templates/Makefile.am
index 8f47a03..38de059 100644
--- a/plugins/templates/Makefile.am
+++ b/plugins/templates/Makefile.am
@@ -25,6 +25,7 @@ liborg_gnome_templates_la_LIBADD =	\
 	$(top_builddir)/e-util/libeutil.la		\
 	$(top_builddir)/shell/libeshell.la		\
 	$(top_builddir)/mail/libevolution-mail.la	\
+	$(top_builddir)/composer/libcomposer.la		\
 	$(GNOME_PLATFORM_LIBS)				\
 	$(EVOLUTION_MAIL_LIBS)
 
-- 
1.6.5


--=-4HIh8RxhDqi1djeSXjOc--



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]