diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | glib/pygspawn.c | 2 | ||||
-rw-r--r-- | gobject/generate-constants.c | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,10 @@ +2009-01-04 Przemysław Grzegorczyk <pgrzegorczyk@gmail.com> + + Bug 563714 – GNOME Goal: Clean up GLib and GTK+ includes + + * gobject/generate-constants.c: + * glib/pygspawn.c: Only include toplevel <glib.h>. + 2009-01-04 Paul Pogonyshev <pogonyshev@gmx.net> Bug 564018 – pygobject libtool-2.2 patch diff --git a/glib/pygspawn.c b/glib/pygspawn.c index 69a120b..ab2a574 100644 --- a/glib/pygspawn.c +++ b/glib/pygspawn.c @@ -22,7 +22,7 @@ */ #include <Python.h> -#include <glib/gspawn.h> +#include <glib.h> #include "pyglib.h" #include "pyglib-private.h" diff --git a/gobject/generate-constants.c b/gobject/generate-constants.c index f872a36..9ab9cc6 100644 --- a/gobject/generate-constants.c +++ b/gobject/generate-constants.c @@ -1,5 +1,5 @@ #include <stdio.h> -#include <glibconfig.h> +#include <glib.h> #include <Python.h> #if PY_VERSION_HEX < 0x03000000 |