diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-20 06:53:21 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-20 06:53:21 +0800 |
commit | 7a437e520418c66f6c92dc5127ff6998b652760f (patch) | |
tree | 5bad4745967a8f748f40f0d60421ee6848f44608 /shell | |
parent | 10966ada7021ae6f8314f026b897b4f297a69db4 (diff) | |
download | gsoc2013-evolution-7a437e520418c66f6c92dc5127ff6998b652760f.tar gsoc2013-evolution-7a437e520418c66f6c92dc5127ff6998b652760f.tar.gz gsoc2013-evolution-7a437e520418c66f6c92dc5127ff6998b652760f.tar.bz2 gsoc2013-evolution-7a437e520418c66f6c92dc5127ff6998b652760f.tar.lz gsoc2013-evolution-7a437e520418c66f6c92dc5127ff6998b652760f.tar.xz gsoc2013-evolution-7a437e520418c66f6c92dc5127ff6998b652760f.tar.zst gsoc2013-evolution-7a437e520418c66f6c92dc5127ff6998b652760f.zip |
Remove the 'POSIX_SOURCE' define completely as we don't need that
anymore.
svn path=/trunk/; revision=3640
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-local-storage.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 0a2f0efe0c..c269f82c68 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-06-19 Ettore Perazzoli <ettore@helixcode.com> + + * e-local-storage.c: Don't #define POSIX_SOURCE at all; this is + not needed anymore as we no longer use `readdir_r'. + 2000-06-19 Chris Toshok <toshok@helixcode.com> * e-local-storage.c: #undef _POSIX_SOURCE after including diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index 0614e17245..93234b4741 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -34,9 +34,7 @@ #include <config.h> #endif -#define _POSIX_SOURCE /* Yuck. */ #include <dirent.h> -#undef _POSIX_SOURCE #include <errno.h> #include <string.h> |