diff options
-rw-r--r-- | camel/ChangeLog | 12 | ||||
-rw-r--r-- | camel/providers/imap/camel-imap-message-cache.c | 3 | ||||
-rw-r--r-- | camel/providers/local/camel-maildir-store.c | 1 | ||||
-rw-r--r-- | camel/providers/local/camel-spoold-store.c | 1 | ||||
-rw-r--r-- | camel/providers/nntp/camel-nntp-store.c | 4 |
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> |