diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-10 00:30:53 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-04-10 00:30:53 +0800 |
commit | 92d85ea01a3e856173bb0a926264fa3576d7d4eb (patch) | |
tree | 352d8dc7150ac2f1fb9df9c8da6cff2cf3d5381d /shell | |
parent | fb12a78742519175f1766950c5a5870232c56993 (diff) | |
download | gsoc2013-evolution-92d85ea01a3e856173bb0a926264fa3576d7d4eb.tar.gz gsoc2013-evolution-92d85ea01a3e856173bb0a926264fa3576d7d4eb.tar.zst gsoc2013-evolution-92d85ea01a3e856173bb0a926264fa3576d7d4eb.zip |
Move <dirent.h> down the #include list so it compiles on Darwin.
* e-local-storage.c: Move <dirent.h> down the #include list so it
compiles on Darwin.
svn path=/trunk/; revision=16407
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/e-local-storage.c | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 4be49021f9..b071cb5fc3 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2002-04-09 Ettore Perazzoli <ettore@ximian.com> + + [Patch from Max Horn <max@quendi.de>.] + + * e-local-storage.c: Move <dirent.h> down the #include list so it + compiles on Darwin. + 2002-04-09 Dan Winship <danw@ximian.com> * e-setup.c (e_setup_check_db): New. Check that things that need diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index 70bcabf6b1..607fccb37e 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -33,13 +33,12 @@ #include <config.h> #endif -#include <dirent.h> - #include <errno.h> #include <string.h> #include <sys/param.h> #include <sys/types.h> #include <sys/stat.h> +#include <dirent.h> #include <gtk/gtksignal.h> #include <libgnome/gnome-defs.h> |