diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-03-02 08:09:45 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-03-02 08:09:45 +0800 |
commit | 799d7f54fdd6bcbf6b73d95070e17b7455c94830 (patch) | |
tree | 280f5659313d908d2f1a5f9b93a0d0fa635008fd /mail | |
parent | dff7aec3c3302c2191100ce22a8cf28959808c28 (diff) | |
download | gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.gz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.bz2 gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.lz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.xz gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.tar.zst gsoc2013-evolution-799d7f54fdd6bcbf6b73d95070e17b7455c94830.zip |
Various building fixes. At least, now it builds for me.
svn path=/trunk/; revision=2007
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/Makefile.am | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 93a24b078e..bf1987d547 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2000-03-01 Ettore Perazzoli <ettore@helixcode.com> + + * Makefile.am (INCLUDES): Add `$(top_srcdir)'. Also, the + `top_srcdir' includes must come first everything else to avoid + including installed headers instead of our fresh ones. + 2000-02-28 NotZed <NotZed@HelixCode.com> * Makefile.am (evolution_mail_LDADD): Fixed references to eutil. diff --git a/mail/Makefile.am b/mail/Makefile.am index c1e7a7c530..5659053b79 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -3,14 +3,15 @@ bin_PROGRAMS = evolution-mail test-mail providerdir = $(libdir)/evolution/camel-providers/$(VERSION) INCLUDES = \ + -I$(top_srcdir)/widgets \ + -I$(top_srcdir)/widgets/e-text \ + -I$(top_srcdir) \ $(BONOBO_HTML_GNOME_CFLAGS) \ -DEVOLUTION_VERSION=\""$(VERSION)"\" \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \ -DEVOLUTION_LOCALEDIR=\""$(datadir)/locale"\" \ - -DCAMEL_PROVIDERDIR=\""$(providerdir)"\" \ - -I$(top_srcdir)/widgets \ - -I$(top_srcdir)/widgets/e-text + -DCAMEL_PROVIDERDIR=\""$(providerdir)"\" EVOLUTION_MAIL_CORBA_GENERATED = \ Mail.h \ |