diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-04-26 07:09:47 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-04-26 07:09:47 +0800 |
commit | 6c62a6cc48086f50f9c957f9720ef75a416f8305 (patch) | |
tree | 9b10cd00e035dec017d579646900bcd2b4109ab3 /modules/mailto-handler | |
parent | 79f7e4534f04a12bac5200ffdd1df48fc17de9ee (diff) | |
download | gsoc2013-evolution-6c62a6cc48086f50f9c957f9720ef75a416f8305.tar.gz gsoc2013-evolution-6c62a6cc48086f50f9c957f9720ef75a416f8305.tar.zst gsoc2013-evolution-6c62a6cc48086f50f9c957f9720ef75a416f8305.zip |
Some modules missing CFLAGS/LIBS for EShell.
Diffstat (limited to 'modules/mailto-handler')
-rw-r--r-- | modules/mailto-handler/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/mailto-handler/Makefile.am b/modules/mailto-handler/Makefile.am index 8e61f34693..c6ab97f9fa 100644 --- a/modules/mailto-handler/Makefile.am +++ b/modules/mailto-handler/Makefile.am @@ -4,7 +4,8 @@ libevolution_module_mailto_handler_la_CPPFLAGS = \ $(AM_CPPFLAGS) \ -I$(top_srcdir) \ -DG_LOG_DOMAIN=\"evolution-mailto-handler\" \ - $(GNOME_PLATFORM_CFLAGS) + $(GNOME_PLATFORM_CFLAGS) \ + $(SHELL_CFLAGS) libevolution_module_mailto_handler_la_SOURCES = \ evolution-mailto-handler.c @@ -12,7 +13,8 @@ libevolution_module_mailto_handler_la_SOURCES = \ libevolution_module_mailto_handler_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/shell/libeshell.la \ - $(GNOME_PLATFORM_LIBS) + $(GNOME_PLATFORM_LIBS) \ + $(SHELL_LIBS) libevolution_module_mailto_handler_la_LDFLAGS = \ -module -avoid-version $(NO_UNDEFINED) |