[Pkg-xfce-commits] r8732 - in /goodies/trunk/lightdm-gtk-greeter/debian: changelog patches/01_unset_AT_SPI_BUS-X11-property.patch patches/series

Yves-Alexis Perez corsac at moszumanska.debian.org
Fri Nov 21 15:56:01 UTC 2014


Author: corsac
Date: Fri Nov 21 15:56:00 2014
New Revision: 8732

URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=8732
Log:
* debian/patches:
  - 01_unset_AT_SPI_BUS-X11-property added, unset AT_SPI_BUS property from
   the root window.                                           closes: #760740

Added:
    goodies/trunk/lightdm-gtk-greeter/debian/patches/01_unset_AT_SPI_BUS-X11-property.patch
Modified:
    goodies/trunk/lightdm-gtk-greeter/debian/changelog
    goodies/trunk/lightdm-gtk-greeter/debian/patches/series

Modified: goodies/trunk/lightdm-gtk-greeter/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm-gtk-greeter/debian/changelog?rev=8732&op=diff
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/changelog	(original)
+++ goodies/trunk/lightdm-gtk-greeter/debian/changelog	Fri Nov 21 15:56:00 2014
@@ -2,7 +2,9 @@
 
   * debian/control, debian/copyright:
     - patch from Artur Rona to fix various lintian warnings.    closes: #750901
-  * 
+  * debian/patches:
+    - 01_unset_AT_SPI_BUS-X11-property added, unset AT_SPI_BUS property from
+     the root window.                                           closes: #760740
 
  -- Yves-Alexis Perez <corsac at debian.org>  Wed, 11 Jun 2014 21:23:58 +0200
 

Added: goodies/trunk/lightdm-gtk-greeter/debian/patches/01_unset_AT_SPI_BUS-X11-property.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm-gtk-greeter/debian/patches/01_unset_AT_SPI_BUS-X11-property.patch?rev=8732&op=file
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/patches/01_unset_AT_SPI_BUS-X11-property.patch	(added)
+++ goodies/trunk/lightdm-gtk-greeter/debian/patches/01_unset_AT_SPI_BUS-X11-property.patch	Fri Nov 21 15:56:00 2014
@@ -0,0 +1,20 @@
+--- a/src/lightdm-gtk-greeter.c.original	2014-10-19 18:30:01.368000000 +0200
++++ b/src/lightdm-gtk-greeter.c	2014-10-19 18:49:46.876000000 +0200
+@@ -2803,5 +2803,16 @@
+         gdk_color_free (default_background_color);
+ #endif
+ 
++    {
++	int screen = XDefaultScreen (display);
++	Window w = RootWindow (display, screen);
++	Atom id = XInternAtom (display, "AT_SPI_BUS", True);
++	if (id != None)
++	    {
++		XDeleteProperty (display, w, id);
++		XSync (display, FALSE);
++	    }
++    }
++
+     return EXIT_SUCCESS;
+ }
+

Modified: goodies/trunk/lightdm-gtk-greeter/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/lightdm-gtk-greeter/debian/patches/series?rev=8732&op=diff
==============================================================================
--- goodies/trunk/lightdm-gtk-greeter/debian/patches/series	(original)
+++ goodies/trunk/lightdm-gtk-greeter/debian/patches/series	Fri Nov 21 15:56:00 2014
@@ -1 +1,2 @@
+01_unset_AT_SPI_BUS-X11-property.patch
 04_default-gtk-greeter-config.patch




More information about the Pkg-xfce-commits mailing list