r15473 - in /desktop/unstable/glib2.0/debian: changelog patches/70_g_timeout_seconds_fix.patch patches/series

sjoerd at users.alioth.debian.org sjoerd at users.alioth.debian.org
Fri Apr 4 10:04:06 UTC 2008


Author: sjoerd
Date: Fri Apr  4 10:04:06 2008
New Revision: 15473

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=15473
Log:
debian/patches/70_g_timeout_seconds_fix.patch
+ Added. Fix a rare case where a timeout from g_timeout_add_seconds() is
never triggered. See http://bugzilla.gnome.org/show_bug.cgi?id=448943

Added:
    desktop/unstable/glib2.0/debian/patches/70_g_timeout_seconds_fix.patch
Modified:
    desktop/unstable/glib2.0/debian/changelog
    desktop/unstable/glib2.0/debian/patches/series

Modified: desktop/unstable/glib2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/glib2.0/debian/changelog?rev=15473&op=diff
==============================================================================
--- desktop/unstable/glib2.0/debian/changelog (original)
+++ desktop/unstable/glib2.0/debian/changelog Fri Apr  4 10:04:06 2008
@@ -1,3 +1,11 @@
+glib2.0 (2.16.2-2) UNRELEASED; urgency=low
+
+  * debian/patches/70_g_timeout_seconds_fix.patch
+    + Added. Fix a rare case where a timeout from g_timeout_add_seconds() is
+    never triggered. See http://bugzilla.gnome.org/show_bug.cgi?id=448943
+
+ -- Sjoerd Simons <sjoerd at debian.org>  Fri, 04 Apr 2008 11:54:34 +0200
+
 glib2.0 (2.16.2-1) unstable; urgency=low
 
   [ Loic Minier ]

Added: desktop/unstable/glib2.0/debian/patches/70_g_timeout_seconds_fix.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/glib2.0/debian/patches/70_g_timeout_seconds_fix.patch?rev=15473&op=file
==============================================================================
--- desktop/unstable/glib2.0/debian/patches/70_g_timeout_seconds_fix.patch (added)
+++ desktop/unstable/glib2.0/debian/patches/70_g_timeout_seconds_fix.patch Fri Apr  4 10:04:06 2008
@@ -1,0 +1,11 @@
+--- glib2.0-2.16.2/glib/gmain.c.orig	2008-03-31 22:45:04.000000000 +0200
++++ glib2.0-2.16.2/glib/gmain.c	2008-04-04 12:01:19.000000000 +0200
+@@ -3320,7 +3320,7 @@
+       if (!session_bus_address)
+         session_bus_address = g_getenv ("HOSTNAME");
+       if (session_bus_address)
+-        timer_perturb = g_str_hash (session_bus_address);
++        timer_perturb = ABS ((gint) g_str_hash (session_bus_address));
+       else
+         timer_perturb = 0;
+     }

Modified: desktop/unstable/glib2.0/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/glib2.0/debian/patches/series?rev=15473&op=diff
==============================================================================
--- desktop/unstable/glib2.0/debian/patches/series (original)
+++ desktop/unstable/glib2.0/debian/patches/series Fri Apr  4 10:04:06 2008
@@ -2,3 +2,4 @@
 02_usr_share_gnome_applications.patch
 03_blacklist-directories.patch
 60_wait-longer-for-threads-to-die.patch
+70_g_timeout_seconds_fix.patch




More information about the pkg-gnome-commits mailing list