diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-10 23:49:55 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-10 23:49:55 +0800 |
commit | e90765d2f696e0898104aaa38e84c4140edc5604 (patch) | |
tree | 822a2bf8c890dc3752acd6d94aaec0738c89bde3 /mail/mail-ops.c | |
parent | 99700ad43dcbf0bf95b335a9fc8f95934080d63c (diff) | |
download | gsoc2013-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
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 5 |
1 files changed, 5 insertions, 0 deletions
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) { |