diff options
author | Chris Toshok <toshok@helixcode.com> | 2000-06-20 05:35:59 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2000-06-20 05:35:59 +0800 |
commit | 8f4e85313c83923bf7ce62454c0f38b79ea8d312 (patch) | |
tree | b40f5e53ce066e2fc858b986a3cf9cf8a716eb25 /shell/e-local-storage.c | |
parent | 9c3a56da17c11cac014efcecd8ebcf099741d913 (diff) | |
download | gsoc2013-evolution-8f4e85313c83923bf7ce62454c0f38b79ea8d312.tar.gz gsoc2013-evolution-8f4e85313c83923bf7ce62454c0f38b79ea8d312.tar.zst gsoc2013-evolution-8f4e85313c83923bf7ce62454c0f38b79ea8d312.zip |
#undef _POSIX_SOURCE after including dirent.h. this breaks the build on
2000-06-19 Chris Toshok <toshok@helixcode.com>
* e-local-storage.c: #undef _POSIX_SOURCE after including
dirent.h. this breaks the build on freebsd if we leave it
#defined. go figure.
svn path=/trunk/; revision=3638
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r-- | shell/e-local-storage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index 05a142152e..0614e17245 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -36,6 +36,7 @@ #define _POSIX_SOURCE /* Yuck. */ #include <dirent.h> +#undef _POSIX_SOURCE #include <errno.h> #include <string.h> |