diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-11-29 20:33:21 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-11-29 20:33:21 +0800 |
commit | 571a286c62f3cfac1b5c14fefb23d9fed2ed5c01 (patch) | |
tree | 5efd6a8397f1a3ceaf05812db2936c617008574e | |
parent | d38a417de3a1872b7776f12eeaf7e0bdbab880cc (diff) | |
download | gsoc2013-evolution-571a286c62f3cfac1b5c14fefb23d9fed2ed5c01.tar gsoc2013-evolution-571a286c62f3cfac1b5c14fefb23d9fed2ed5c01.tar.gz gsoc2013-evolution-571a286c62f3cfac1b5c14fefb23d9fed2ed5c01.tar.bz2 gsoc2013-evolution-571a286c62f3cfac1b5c14fefb23d9fed2ed5c01.tar.lz gsoc2013-evolution-571a286c62f3cfac1b5c14fefb23d9fed2ed5c01.tar.xz gsoc2013-evolution-571a286c62f3cfac1b5c14fefb23d9fed2ed5c01.tar.zst gsoc2013-evolution-571a286c62f3cfac1b5c14fefb23d9fed2ed5c01.zip |
Builddir != srcdir loving.
svn path=/trunk/; revision=6712
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/mbox/camel-mbox-summary.c | 2 | ||||
-rw-r--r-- | camel/tests/lib/Makefile.am | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 4db4d32274..c3f7bb030a 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2000-11-29 Ettore Perazzoli <ettore@helixcode.com> + + * tests/lib/Makefile.am (INCLUDES): `$(top_srcdir)' for builddir + != srcdir compilation. + 2000-11-29 Not Zed <NotZed@HelixCode.com> * tests/message/test2.c (main): Add a missed unref. diff --git a/camel/providers/mbox/camel-mbox-summary.c b/camel/providers/mbox/camel-mbox-summary.c index 5da259c17f..730e9a287c 100644 --- a/camel/providers/mbox/camel-mbox-summary.c +++ b/camel/providers/mbox/camel-mbox-summary.c @@ -31,7 +31,7 @@ #include <stdlib.h> #define io(x) -#define d(x) +#define d(x) x #define CAMEL_MBOX_SUMMARY_VERSION (0x1000) diff --git a/camel/tests/lib/Makefile.am b/camel/tests/lib/Makefile.am index db09b0cf5e..a87dc59bf6 100644 --- a/camel/tests/lib/Makefile.am +++ b/camel/tests/lib/Makefile.am @@ -1,4 +1,6 @@ +INCLUDES = -I$(top_srcdir) + check_LIBRARIES = libcameltest.a libcameltest_a_SOURCES = \ |