aboutsummaryrefslogtreecommitdiffstats
path: root/smime
diff options
context:
space:
mode:
Diffstat (limited to 'smime')
-rw-r--r--smime/ChangeLog4
-rw-r--r--smime/gui/Makefile.am4
2 files changed, 7 insertions, 1 deletions
diff --git a/smime/ChangeLog b/smime/ChangeLog
index 73b268ba25..cee6b07c14 100644
--- a/smime/ChangeLog
+++ b/smime/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-24 JP Rosevear <jpr@ximian.com>
+
+ * gui/Makefile.am: fix includes for builddir != srcdir
+
2004-02-11 Jeffrey Stedfast <fejj@ximian.com>
* lib/e-pkcs12.c: #include <config.h>
diff --git a/smime/gui/Makefile.am b/smime/gui/Makefile.am
index 614c2d5525..17526784d6 100644
--- a/smime/gui/Makefile.am
+++ b/smime/gui/Makefile.am
@@ -1,9 +1,11 @@
INCLUDES = \
-DG_LOG_DOMAIN=\"evolution-smime\" \
-I$(top_srcdir) \
+ -I$(top_builddir) \
-I$(top_srcdir)/smime/lib \
+ -I$(top_builddir)/smime/lib \
-I$(top_srcdir)/shell \
- -I$(top_builddir) \
+ -I$(top_builddir)/shell \
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \