aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-lock.c2
-rw-r--r--camel/camel-movemail.c2
3 files changed, 9 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 1bea526cde..d5766dd0f2 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-11-21 Dan Winship <danw@helixcode.com>
+
+ * camel-lock.c:
+ * camel-movemail.c: add #ifdef HAVE_ALLOCA_H
+
2000-11-21 Not Zed <NotZed@HelixCode.com>
* providers/local/camel-mh-summary.c (mh_summary_sync_message):
diff --git a/camel/camel-lock.c b/camel/camel-lock.c
index fdd2c183e7..ab70cfd891 100644
--- a/camel/camel-lock.c
+++ b/camel/camel-lock.c
@@ -34,7 +34,9 @@
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
+#ifdef HAVE_ALLOCA_H
#include <alloca.h>
+#endif
#include <time.h>
#ifdef USE_DOT
diff --git a/camel/camel-movemail.c b/camel/camel-movemail.c
index bd5022f421..a0873b25ad 100644
--- a/camel/camel-movemail.c
+++ b/camel/camel-movemail.c
@@ -35,7 +35,9 @@
#include <unistd.h>
#include <string.h>
#include <signal.h>
+#ifdef HAVE_ALLOCA_H
#include <alloca.h>
+#endif
#include "camel-movemail.h"
#include "camel-exception.h"