Codebase list guile-gnome-platform / debian/2.16.1-4
Import Debian changes 2.16.1-4 guile-gnome-platform (2.16.1-4) unstable; urgency=low * New patch: fixes/gtk-2.18-build (closes: #549752). * Added README.source, referring to tg2quilt HOWTO. Andreas Rottmann authored 14 years ago Tommi Höynälänmaa committed 5 years ago
4 changed file(s) with 80 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 Building guile-gnome-platform for Debian
1 ----------------------------------------
2
3 The guile-gnome-platform source package uses quilt to apply and remove
4 its patches. Please refer to /usr/share/doc/quilt/README.source for
5 information about how to use quilt for source packages.
6
7 The quilt series is generated from the Git repository, using TopGit.
8 This process is documented in /usr/share/doc/topgit/HOWTO-tg2quilt.gz.
9
10 The guile-gnome-platform package uses the branch layout described in the
11 aforementioned document.
12
13 You can find the Git repository at
14 <http://git.debian.org/?p=users/rotty/guile-gnome-platform.git>.
15
16 -- Andreas Rottmann <rotty@debian.org>, Thu, 5 Nov 2009 16:27:21 +0100
0 guile-gnome-platform (2.16.1-4) unstable; urgency=low
1
2 * New patch: fixes/gtk-2.18-build (closes: #549752).
3 * Added README.source, referring to tg2quilt HOWTO.
4
5 -- Andreas Rottmann <rotty@debian.org> Thu, 05 Nov 2009 16:28:43 +0100
6
07 guile-gnome-platform (2.16.1-3) unstable; urgency=low
18
29 * Standards-Version 3.8.3:
0 From: Andreas Rottmann <a.rottmann@gmx.at>
1 Subject: Fix build against GTK+ 2.18
2 Origin: vendor
3 Bug: https://bugzilla.gnome.org/show_bug.cgi?id=597480
4 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=549752
5
6
7
8 ---
9 gtk/gnome/gw/gtk-support.c | 2 +-
10 gtk/gnome/gw/gtk-support.h | 2 +-
11 gtk/gnome/overrides/gtk.defs | 3 ++-
12 3 files changed, 4 insertions(+), 3 deletions(-)
13
14 diff --git a/gtk/gnome/gw/gtk-support.c b/gtk/gnome/gw/gtk-support.c
15 index d646667..83a563e 100644
16 --- a/gtk/gnome/gw/gtk-support.c
17 +++ b/gtk/gnome/gw/gtk-support.c
18 @@ -1012,7 +1012,7 @@ gtk_widget_get_window (GtkWidget *widget)
19 }
20
21 GdkRectangle*
22 -gtk_widget_get_allocation (GtkWidget *widget)
23 +_gtk_widget_get_allocation (GtkWidget *widget)
24 {
25 GdkRectangle *ret = g_new (GdkRectangle, 1);
26 *ret = widget->allocation;
27 diff --git a/gtk/gnome/gw/gtk-support.h b/gtk/gnome/gw/gtk-support.h
28 index 0326cd1..79009c0 100644
29 --- a/gtk/gnome/gw/gtk-support.h
30 +++ b/gtk/gnome/gw/gtk-support.h
31 @@ -117,6 +117,6 @@ void _wrap_gtk_tree_view_column_set_cell_data_func (GtkTreeViewColumn *tree_colu
32 guint _wrap_gtk_ui_manager_add_ui_from_string (GtkUIManager *ui, const gchar *string, GError **error);
33
34 GdkWindow* gtk_widget_get_window (GtkWidget *widget);
35 -GdkRectangle* gtk_widget_get_allocation (GtkWidget *widget);
36 +GdkRectangle* _gtk_widget_get_allocation (GtkWidget *widget);
37 void _wrap_gtk_drag_dest_set (GtkWidget *widget, GtkDestDefaults flags, const GList *types, GdkDragAction actions);
38 GtkStateType gtk_widget_get_state (GtkWidget *widget);
39 diff --git a/gtk/gnome/overrides/gtk.defs b/gtk/gnome/overrides/gtk.defs
40 index e69a5a2..e914f70 100644
41 --- a/gtk/gnome/overrides/gtk.defs
42 +++ b/gtk/gnome/overrides/gtk.defs
43 @@ -848,7 +848,8 @@
44
45 (define-method get-allocation
46 (of-object "GtkWidget")
47 - (c-name "gtk_widget_get_allocation")
48 + (c-name "_gtk_widget_get_allocation")
49 + (overrides "gtk_widget_get_allocation")
50 (return-type "GdkRectangle*")) ;; same as GtkAllocation
51
52 (define-method get_state
53 --
54 tg: (e3b9fd7..) fixes/gtk-2.18-build (depends on: upstream)
00 fixes/glib-test-stack-depth.diff -p1
1 fixes/gtk-2.18-build.diff -p1
12 fixes/link-with-guile-cairo.diff -p1