diff options
author | Tor Lillqvist <tml@novell.com> | 2009-01-29 02:18:17 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2009-01-29 02:18:17 +0800 |
commit | 31bda94d32b772af25f9e2dc725c22f95b4a4cd7 (patch) | |
tree | e7bf4b01835d6a7a3beb8b50b53b0eda61e09cc6 | |
parent | 6ae40bce3032f0ca141640cfa14b7d6e4d015948 (diff) | |
download | gsoc2013-evolution-31bda94d32b772af25f9e2dc725c22f95b4a4cd7.tar.gz gsoc2013-evolution-31bda94d32b772af25f9e2dc725c22f95b4a4cd7.tar.zst gsoc2013-evolution-31bda94d32b772af25f9e2dc725c22f95b4a4cd7.zip |
Link with more libraries on Windows.
2009-01-28 Tor Lillqvist <tml@novell.com>
* Makefile.am: Link with more libraries on Windows.
svn path=/trunk/; revision=37154
-rw-r--r-- | plugins/mail-notification/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/mail-notification/Makefile.am | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/plugins/mail-notification/ChangeLog b/plugins/mail-notification/ChangeLog index c08225cdda..ecbc34391d 100644 --- a/plugins/mail-notification/ChangeLog +++ b/plugins/mail-notification/ChangeLog @@ -1,7 +1,7 @@ 2009-01-28 Tor Lillqvist <tml@novell.com> - * Makefile.am: Use -no-undefined and link with GNOME_PLATFORM_LIBS - on Windows. + * Makefile.am: Use -no-undefined and link with more libraries on + Windows. 2008-11-19 Srinivasa Ragavan <sragavan@novell.com> diff --git a/plugins/mail-notification/Makefile.am b/plugins/mail-notification/Makefile.am index 627fd93bed..8915fe92ad 100644 --- a/plugins/mail-notification/Makefile.am +++ b/plugins/mail-notification/Makefile.am @@ -1,5 +1,8 @@ if OS_WIN32 -NO_UNDEFINED_REQUIRED_LIBS = $(GNOME_PLATFORM_LIBS) +NO_UNDEFINED_REQUIRED_LIBS = \ + $(top_builddir)/mail/libevolution-mail.la \ + $(top_builddir)/e-util/libeutil.la \ + $(GNOME_PLATFORM_LIBS) endif INCLUDES = \ |