Upstream has done a black root window on startup for a while, no point in

doing it twice, and in a way that prevents `xsetroot -default` from working.
This commit is contained in:
jakllsch 2009-10-29 19:12:03 +00:00
parent 904d2c39e4
commit b95310626b
2 changed files with 1 additions and 24 deletions

View file

@ -1,11 +1,10 @@
$NetBSD: distinfo,v 1.39 2009/10/14 18:46:58 hasso Exp $
$NetBSD: distinfo,v 1.40 2009/10/29 19:12:03 jakllsch Exp $
SHA1 (xorg-server-1.6.5.tar.bz2) = c57c80dd15d3ca492e58ae993b9015d085ec6ea6
RMD160 (xorg-server-1.6.5.tar.bz2) = 702970358a5643dbc9205f42e39c5b8ed2ff845a
Size (xorg-server-1.6.5.tar.bz2) = 4678406 bytes
SHA1 (patch-ab) = c65457bf58b7504375b31512c743c9f1a5dcdde0
SHA1 (patch-af) = 722d4679d3386c9a02e1c45a1aa355658ccc2908
SHA1 (patch-ah) = 2820d1a394de6bf19b980cc52a41cbb09c582b8f
SHA1 (patch-aj) = 84ff5c6215d0b62734cf26e78394a70afe2b7007
SHA1 (patch-ak) = df6d3b2172254e1f9d44eb40144cad5ed29a7d1d
SHA1 (patch-al) = cb1fb44037f23fb2838ed36aaf2591946264fe53

View file

@ -1,22 +0,0 @@
$NetBSD: patch-ah,v 1.3 2009/06/07 11:23:47 wiz Exp $
This patch provides a black background by default--a little
nicer, no?
--- dix/window.c.orig 2009-03-21 01:57:50 +0200
+++ dix/window.c 2009-05-19 14:35:57 +0300
@@ -138,8 +138,12 @@ Equipment Corporation.
* ChangeWindowDeviceCursor
******/
-static unsigned char _back_lsb[4] = {0x88, 0x22, 0x44, 0x11};
-static unsigned char _back_msb[4] = {0x11, 0x44, 0x22, 0x88};
+/* TODO: Perhaps we should allow the user/system administrator
+ * to set this via environment variable or configuration
+ * directive?
+ */
+static unsigned char _back_lsb[4] = {0x00, 0x00, 0x00, 0x00};
+static unsigned char _back_msb[4] = {0x00, 0x00, 0x00, 0x00};
static Bool WindowParentHasDeviceCursor(WindowPtr pWin,
DeviceIntPtr pDev,