include "config.h" in all .c files

Also, fix shell-global.c to actually compile with config.h included.

Was supposed to fix bug 602802, but doesn't...
This commit is contained in:
Dan Winship
2009-11-24 09:07:40 -05:00
parent f0e3b87330
commit dd8f05c81d
22 changed files with 49 additions and 0 deletions

View File

@ -1,5 +1,7 @@
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#include "config.h"
#include "shell-global-private.h"
#include "shell-wm.h"
@ -19,6 +21,9 @@
#include <math.h>
#include <X11/extensions/Xfixes.h>
#include <gjs/gjs.h>
#ifdef HAVE_SYS_RESOURCE_H
#include <sys/resource.h>
#endif
#define SHELL_DBUS_SERVICE "org.gnome.Shell"