r51955 - in /desktop/unstable/gtk+2.0/debian: changelog patches/0001-Don-t-use-guint32-with-XChangeProperty.patch patches/series

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Thu Jan 26 16:54:25 UTC 2017


Author: pochu
Date: Thu Jan 26 16:54:25 2017
New Revision: 51955

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=51955
Log:
* debian/patches/0001-Don-t-use-guint32-with-XChangeProperty.patch:
  + Backport patch from GTK+3 to fix unaligned access on sparc64.
    Thanks James Clarke. Closes: #852401.

Added:
    desktop/unstable/gtk+2.0/debian/patches/0001-Don-t-use-guint32-with-XChangeProperty.patch
Modified:
    desktop/unstable/gtk+2.0/debian/changelog
    desktop/unstable/gtk+2.0/debian/patches/series

Modified: desktop/unstable/gtk+2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/changelog?rev=51955&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gtk+2.0/debian/changelog	[utf-8] Thu Jan 26 16:54:25 2017
@@ -1,3 +1,11 @@
+gtk+2.0 (2.24.31-2) UNRELEASED; urgency=medium
+
+  * debian/patches/0001-Don-t-use-guint32-with-XChangeProperty.patch:
+    + Backport patch from GTK+3 to fix unaligned access on sparc64.
+      Thanks James Clarke. Closes: #852401.
+
+ -- Emilio Pozuelo Monfort <pochu at debian.org>  Thu, 26 Jan 2017 08:38:59 +0100
+
 gtk+2.0 (2.24.31-1) unstable; urgency=medium
 
   * New upstream release.

Added: desktop/unstable/gtk+2.0/debian/patches/0001-Don-t-use-guint32-with-XChangeProperty.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/0001-Don-t-use-guint32-with-XChangeProperty.patch?rev=51955&op=file
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/0001-Don-t-use-guint32-with-XChangeProperty.patch	(added)
+++ desktop/unstable/gtk+2.0/debian/patches/0001-Don-t-use-guint32-with-XChangeProperty.patch	[utf-8] Thu Jan 26 16:54:25 2017
@@ -0,0 +1,26 @@
+>From 710f538d68e6f9ca0b2fbe38df3f8ee35ddd0126 Mon Sep 17 00:00:00 2001
+From: James Clarke <jrtc27 at jrtc27.com>
+Date: Tue, 24 Jan 2017 08:35:28 +0000
+Subject: [PATCH] Don't use guint32 with XChangeProperty
+
+Fixes bug 777683.
+---
+ gdk/x11/gdkwindow-x11.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/gdk/x11/gdkwindow-x11.c b/gdk/x11/gdkwindow-x11.c
+index 837f605..887a5ef 100644
+--- a/gdk/x11/gdkwindow-x11.c
++++ b/gdk/x11/gdkwindow-x11.c
+@@ -5575,7 +5575,7 @@ gdk_window_set_opacity (GdkWindow *window,
+ 			gdouble    opacity)
+ {
+   GdkDisplay *display;
+-  guint32 cardinal;
++  gulong cardinal;
+   
+   g_return_if_fail (GDK_IS_WINDOW (window));
+ 
+-- 
+2.11.0
+

Modified: desktop/unstable/gtk+2.0/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/series?rev=51955&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/series	[utf-8] (original)
+++ desktop/unstable/gtk+2.0/debian/patches/series	[utf-8] Thu Jan 26 16:54:25 2017
@@ -10,3 +10,4 @@
 060_ignore-random-icons.patch
 061_use_pdf_as_default_printing_standard.patch
 098_multiarch_module_path.patch
+0001-Don-t-use-guint32-with-XChangeProperty.patch




More information about the pkg-gnome-commits mailing list