diff options
-rw-r--r-- | capplets/windows/ChangeLog | 5 | ||||
-rw-r--r-- | capplets/windows/metacity-window-manager.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/capplets/windows/ChangeLog b/capplets/windows/ChangeLog index 2518b3afd..537a10e9a 100644 --- a/capplets/windows/ChangeLog +++ b/capplets/windows/ChangeLog @@ -1,3 +1,8 @@ +2002-08-31 Jacob Berkman <jacob@ximian.com> + + * metacity-window-manager.c: include sys/types.h before dirent.h + and string.h + 2002-08-21 Jody Goldberg <jody@gnome.org> * Release 2.1.0 diff --git a/capplets/windows/metacity-window-manager.c b/capplets/windows/metacity-window-manager.c index eca331bd7..48b7b1a10 100644 --- a/capplets/windows/metacity-window-manager.c +++ b/capplets/windows/metacity-window-manager.c @@ -1,5 +1,7 @@ -#include <dirent.h> #include <config.h> +#include <sys/types.h> +#include <dirent.h> +#include <string.h> #include <gconf/gconf-client.h> #include "metacity-window-manager.h" |