diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-04-18 00:54:50 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-04-18 00:54:50 +0800 |
commit | a8ed26a0d30ee93b457da41c1aa0fb04f44db50e (patch) | |
tree | 9b609b4474eb8246a5c238e4aaef4b6bead33562 | |
parent | 54b5c7382a402ed14687f09dfa6a1300e531fabc (diff) | |
download | gsoc2013-evolution-a8ed26a0d30ee93b457da41c1aa0fb04f44db50e.tar gsoc2013-evolution-a8ed26a0d30ee93b457da41c1aa0fb04f44db50e.tar.gz gsoc2013-evolution-a8ed26a0d30ee93b457da41c1aa0fb04f44db50e.tar.bz2 gsoc2013-evolution-a8ed26a0d30ee93b457da41c1aa0fb04f44db50e.tar.lz gsoc2013-evolution-a8ed26a0d30ee93b457da41c1aa0fb04f44db50e.tar.xz gsoc2013-evolution-a8ed26a0d30ee93b457da41c1aa0fb04f44db50e.tar.zst gsoc2013-evolution-a8ed26a0d30ee93b457da41c1aa0fb04f44db50e.zip |
Pull up fix from the branch:
Add a `$(EXTRA_GNOME_CFLAGS)' to the importers' Makefile.am as they
are using GAL.
svn path=/trunk/; revision=9410
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/importers/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 82be2a1a83..148338c527 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-04-16 Ettore Perazzoli <ettore@ximian.com> + + * importers/Makefile.am (INCLUDES): Add `$(EXTRA_GNOME_CFLAGS)' + here. + 2001-04-15 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (mark_all_as_seen): Mark the messages as seen, diff --git a/mail/importers/Makefile.am b/mail/importers/Makefile.am index f93115f950..eb35101291 100644 --- a/mail/importers/Makefile.am +++ b/mail/importers/Makefile.am @@ -9,7 +9,7 @@ INCLUDES = -I.. \ -I$(top_srcdir)/shell \ -I$(top_builddir)/shell \ -I$(includedir) \ - $(GNOME_INCLUDEDIR) \ + $(EXTRA_GNOME_CFLAGS) \ -DG_LOG_DOMAIN=\"evolution-mail-importer\" liboutlook_la_SOURCES = \ |