diff options
author | Przemysław Grzegorczyk <pgrzegorczyk@gmail.com> | 2009-01-04 21:29:47 +0000 |
---|---|---|
committer | Paul Pogonyshev <paulp@src.gnome.org> | 2009-01-04 21:29:47 +0000 |
commit | 9359060516f5dfea236fbf147815e48d54dac18a (patch) | |
tree | 873676beef3666b0164767c491f260c5101f94cc | |
parent | 56e8e9f2433cb0334254deb2104d3089b814a083 (diff) | |
download | pygobject-9359060516f5dfea236fbf147815e48d54dac18a.tar.gz pygobject-9359060516f5dfea236fbf147815e48d54dac18a.tar.xz pygobject-9359060516f5dfea236fbf147815e48d54dac18a.zip |
Bug 563714 – GNOME Goal: Clean up GLib and GTK+ includes
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>.
svn path=/trunk/; revision=989
-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 |