diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | gdk/gdkinternals.h | 1 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2007-12-13 Mathias Hasselmann <mathias@openismus.com> + + Make the code compile again after the GdkAppLaunchContext changes. + + * configure.in: Add gio-2.0 to GDK_PACKAGES. + * gdk/gdkinternals.h: Include <gio/gappinfo.h>. + 2007-12-12 Matthias Clasen <mclasen@redhat.com> * gdk/gdkapplaunchcontext.c: Add docs diff --git a/configure.in b/configure.in index 01578035a4..0741e53c05 100644 --- a/configure.in +++ b/configure.in @@ -1477,7 +1477,7 @@ fi CFLAGS="$saved_cflags" LDFLAGS="$saved_ldflags" -GDK_PACKAGES="$PANGO_PACKAGES" +GDK_PACKAGES="$PANGO_PACKAGES gio-2.0" if test "x$gdktarget" = "xx11"; then GDK_PACKAGES="$GDK_PACKAGES $X_PACKAGES" fi diff --git a/gdk/gdkinternals.h b/gdk/gdkinternals.h index b8c84c51dc..8c79cb1021 100644 --- a/gdk/gdkinternals.h +++ b/gdk/gdkinternals.h @@ -29,6 +29,7 @@ #include <gdk/gdktypes.h> #include <gdk/gdkwindow.h> #include <gdk/gdkprivate.h> +#include <gio/gappinfo.h> #ifndef __GDK_INTERNALS_H__ #define __GDK_INTERNALS_H__ |