aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-04-10 23:49:55 +0800
committerDan Winship <danw@src.gnome.org>2000-04-10 23:49:55 +0800
commite90765d2f696e0898104aaa38e84c4140edc5604 (patch)
tree822a2bf8c890dc3752acd6d94aaec0738c89bde3
parent99700ad43dcbf0bf95b335a9fc8f95934080d63c (diff)
downloadgsoc2013-evolution-e90765d2f696e0898104aaa38e84c4140edc5604.tar
gsoc2013-evolution-e90765d2f696e0898104aaa38e84c4140edc5604.tar.gz
gsoc2013-evolution-e90765d2f696e0898104aaa38e84c4140edc5604.tar.bz2
gsoc2013-evolution-e90765d2f696e0898104aaa38e84c4140edc5604.tar.lz
gsoc2013-evolution-e90765d2f696e0898104aaa38e84c4140edc5604.tar.xz
gsoc2013-evolution-e90765d2f696e0898104aaa38e84c4140edc5604.tar.zst
gsoc2013-evolution-e90765d2f696e0898104aaa38e84c4140edc5604.zip
Add some #includes for the non-HAVE_MKSTEMP case
* mail-ops.c: Add some #includes for the non-HAVE_MKSTEMP case svn path=/trunk/; revision=2361
-rw-r--r--mail/ChangeLog2
-rw-r--r--mail/mail-ops.c5
2 files changed, 7 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 74ffc4adce..3e091eb7cc 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -6,6 +6,8 @@
is rewriting CamelMboxFolder, so I'm not going to bother to try to
fix it.
+ * mail-ops.c: Add some #includes for the non-HAVE_MKSTEMP case
+
2000-04-09 Matt Loper <matt@helixcode.com>
* folder-browser.c (folder_browser_new): set folder_browser->uri
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index edb3bf0805..9a076c5856 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -32,6 +32,11 @@
#include "session.h"
#include "e-util/e-setup.h"
+#ifndef HAVE_MKSTEMP
+#include <fcntl.h>
+#include <sys/stat.h>
+#endif
+
static void
mail_exception_dialog (char *head, CamelException *ex, GtkWindow *window)
{