aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-04-15 04:13:01 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-04-15 04:13:01 +0800
commit64d2b647c16dde48dea12c08113dbbc325bce565 (patch)
tree09212cab5bc05b780117c35935f58526241a4a33
parentdc0f1749e2cd43982570012b650f8c48050f1269 (diff)
downloadgsoc2013-evolution-64d2b647c16dde48dea12c08113dbbc325bce565.tar
gsoc2013-evolution-64d2b647c16dde48dea12c08113dbbc325bce565.tar.gz
gsoc2013-evolution-64d2b647c16dde48dea12c08113dbbc325bce565.tar.bz2
gsoc2013-evolution-64d2b647c16dde48dea12c08113dbbc325bce565.tar.lz
gsoc2013-evolution-64d2b647c16dde48dea12c08113dbbc325bce565.tar.xz
gsoc2013-evolution-64d2b647c16dde48dea12c08113dbbc325bce565.tar.zst
gsoc2013-evolution-64d2b647c16dde48dea12c08113dbbc325bce565.zip
Added #include <sys/types.h> for dirent.h which needs it on MacOS X.
2002-04-14 Jeffrey Stedfast <fejj@ximian.com> * providers/local/camel-spoold-store.c: Added #include <sys/types.h> for dirent.h which needs it on MacOS X. * providers/local/camel-maildir-store.c: Same. * providers/nntp/camel-nntp-store.c: Same. * providers/imap/camel-imap-message-cache.c: Same. * camel-provider.c: Same. * camel-data-cache.c: Same. svn path=/trunk/; revision=16466
-rw-r--r--camel/ChangeLog12
-rw-r--r--camel/providers/imap/camel-imap-message-cache.c3
-rw-r--r--camel/providers/local/camel-maildir-store.c1
-rw-r--r--camel/providers/local/camel-spoold-store.c1
-rw-r--r--camel/providers/nntp/camel-nntp-store.c4
5 files changed, 18 insertions, 3 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 9264a50300..0356045cc9 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,7 +1,15 @@
2002-04-14 Jeffrey Stedfast <fejj@ximian.com>
- * camel-provider.c: Added #include <sys/types.h> for dirent.h
- which needs it on MacOS X.
+ * providers/local/camel-spoold-store.c: Added #include
+ <sys/types.h> for dirent.h which needs it on MacOS X.
+
+ * providers/local/camel-maildir-store.c: Same.
+
+ * providers/nntp/camel-nntp-store.c: Same.
+
+ * providers/imap/camel-imap-message-cache.c: Same.
+
+ * camel-provider.c: Same.
* camel-data-cache.c: Same.
diff --git a/camel/providers/imap/camel-imap-message-cache.c b/camel/providers/imap/camel-imap-message-cache.c
index e5cddf9bae..f7ed6e2a5e 100644
--- a/camel/providers/imap/camel-imap-message-cache.c
+++ b/camel/providers/imap/camel-imap-message-cache.c
@@ -26,10 +26,11 @@
#include <config.h>
#endif
-#include <ctype.h>
+#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <string.h>
+#include <ctype.h>
#include "camel-imap-message-cache.h"
#include "camel-data-wrapper.h"
diff --git a/camel/providers/local/camel-maildir-store.c b/camel/providers/local/camel-maildir-store.c
index 788f1a7abb..ef152b132f 100644
--- a/camel/providers/local/camel-maildir-store.c
+++ b/camel/providers/local/camel-maildir-store.c
@@ -23,6 +23,7 @@
#include <config.h>
#endif
+#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <string.h>
diff --git a/camel/providers/local/camel-spoold-store.c b/camel/providers/local/camel-spoold-store.c
index aba994cc91..e6b375ce44 100644
--- a/camel/providers/local/camel-spoold-store.c
+++ b/camel/providers/local/camel-spoold-store.c
@@ -23,6 +23,7 @@
#include <config.h>
#endif
+#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <string.h>
diff --git a/camel/providers/nntp/camel-nntp-store.c b/camel/providers/nntp/camel-nntp-store.c
index feca770e37..c4737add36 100644
--- a/camel/providers/nntp/camel-nntp-store.c
+++ b/camel/providers/nntp/camel-nntp-store.c
@@ -23,8 +23,12 @@
* USA
*/
+
+#ifdef HAVE_CONFIG_H
#include <config.h>
+#endif
+#include <sys/types.h>
#include <dirent.h>
#include <errno.h>
#include <stdio.h>