diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-03 23:45:22 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-03 23:45:22 +0800 |
commit | bc9ac7db4c2046818cdc0769278c65e92039df75 (patch) | |
tree | bbdf810840a0d290e2112facedd1d85ea2c984c4 | |
parent | 7792032178886cb9eafaddaa7b45895766f42f16 (diff) | |
download | gsoc2013-evolution-bc9ac7db4c2046818cdc0769278c65e92039df75.tar gsoc2013-evolution-bc9ac7db4c2046818cdc0769278c65e92039df75.tar.gz gsoc2013-evolution-bc9ac7db4c2046818cdc0769278c65e92039df75.tar.bz2 gsoc2013-evolution-bc9ac7db4c2046818cdc0769278c65e92039df75.tar.lz gsoc2013-evolution-bc9ac7db4c2046818cdc0769278c65e92039df75.tar.xz gsoc2013-evolution-bc9ac7db4c2046818cdc0769278c65e92039df75.tar.zst gsoc2013-evolution-bc9ac7db4c2046818cdc0769278c65e92039df75.zip |
srcdir != builddir fix
svn path=/trunk/; revision=4506
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/nntp/Makefile.am | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 48037809e3..0a2d75df5e 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2000-08-03 Peter Williams <peterw@helixcode.com> + + * providers/nntp/Makefile.am (INCLUDES): Add -I$(top_srcdir) to + pull in libibex/ibex.h + 2000-08-02 Dan Winship <danw@helixcode.com> * providers/MH: Kill this. It doesn't have any code to do anything diff --git a/camel/providers/nntp/Makefile.am b/camel/providers/nntp/Makefile.am index 13db1371ca..6e3a4272a6 100644 --- a/camel/providers/nntp/Makefile.am +++ b/camel/providers/nntp/Makefile.am @@ -8,6 +8,7 @@ provider_LTLIBRARIES = libcamelnntp.la provider_DATA = libcamelnntp.urls INCLUDES = -I.. -I$(srcdir)/.. -I$(includedir) \ + -I$(top_srcdir) \ -I$(top_srcdir)/intl \ $(GTK_INCLUDEDIR) -I$(top_srcdir)/camel \ -I$(srcdir)/../mbox \ |