Added #include <sys/types.h> for dirent.h which needs it on MacOS X.

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.

	* camel-data-cache.c: Same.

svn path=/trunk/; revision=16463
This commit is contained in:
Jeffrey Stedfast
2002-04-14 05:40:33 +00:00
committed by Jeffrey Stedfast
parent bebaa90ca9
commit 2665c984e4
3 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,10 @@
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.
* camel-data-cache.c: Same.
2002-04-12 Jeffrey Stedfast <fejj@ximian.com> 2002-04-12 Jeffrey Stedfast <fejj@ximian.com>
* broken-date-parser.c (datetok): Treat commas as token * broken-date-parser.c (datetok): Treat commas as token

View File

@ -24,6 +24,7 @@
#include <config.h> #include <config.h>
#endif #endif
#include <sys/types.h>
#include <ctype.h> #include <ctype.h>
#include <dirent.h> #include <dirent.h>
#include <errno.h> #include <errno.h>

View File

@ -32,6 +32,7 @@
#include <config.h> #include <config.h>
#endif #endif
#include <sys/types.h>
#include <dirent.h> #include <dirent.h>
#include <errno.h> #include <errno.h>
#include <stdio.h> #include <stdio.h>