diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-12-28 03:10:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-12-28 03:32:39 +0800 |
commit | 59bd81691def7f7f8c0ead2edaacd374b6791067 (patch) | |
tree | e09951e7f35561f573fc56a50f42c706ac25aae5 /shell | |
parent | 6a074300e533a82fb1a09b470724e54b155f8cd5 (diff) | |
download | gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar.gz gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar.zst gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.zip |
Compiler and linker flag cleanups.
Diffstat (limited to 'shell')
-rw-r--r-- | shell/Makefile.am | 4 | ||||
-rw-r--r-- | shell/test/Makefile.am | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/shell/Makefile.am b/shell/Makefile.am index 876b945f8f..b941ee2753 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -56,6 +56,7 @@ libeshell_la_CPPFLAGS = \ -DDATADIR=\""$(datadir)"\" \ -DLIBDIR=\""$(datadir)"\" \ -DG_LOG_DOMAIN=\"evolution-shell\" \ + $(GNOME_PLATFORM_CFLAGS) \ $(TZDIALOG_CFLAGS) \ $(SHELL_CFLAGS) @@ -138,7 +139,8 @@ evolution_LDADD = \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/filter/libfilter.la \ $(TZDIALOG_LIBS) \ - $(SHELL_LIBS) \ + $(SHELL_LIBS) \ + $(GNOME_PLATFORM_LIBS) \ $(EVOLUTIONICONRC) if OS_WIN32 diff --git a/shell/test/Makefile.am b/shell/test/Makefile.am index 0756a472a3..7ba2eaf55b 100644 --- a/shell/test/Makefile.am +++ b/shell/test/Makefile.am @@ -9,6 +9,7 @@ libevolution_module_test_la_CPPFLAGS = \ -I$(top_srcdir)/widgets/misc \ -I$(top_builddir)/shell \ -DG_LOG_DOMAIN=\"evolution-test\" \ + $(GNOME_PLATFORM_CFLAGS) \ $(EVOLUTION_TEST_CFLAGS) libevolution_module_test_la_SOURCES = \ @@ -20,7 +21,8 @@ libevolution_module_test_la_SOURCES = \ libevolution_module_test_la_LIBADD = \ $(top_builddir)/shell/libeshell.la \ - $(EVOLUTION_TEST_LIBS) + $(EVOLUTION_TEST_LIBS) \ + $(GNOME_PLATFORM_LIBS) libevolution_module_test_la_LDFLAGS = \ -avoid-version -module $(NO_UNDEFINED) |