diff options
author | jakllsch <jakllsch@pkgsrc.org> | 2009-10-29 19:12:03 +0000 |
---|---|---|
committer | jakllsch <jakllsch@pkgsrc.org> | 2009-10-29 19:12:03 +0000 |
commit | c707176e99ca3e9b70f4b6d5391b3bef2958d0e8 (patch) | |
tree | 7be63edd4583733af454c195b6e16606c24a6afe /x11 | |
parent | 30d668bf000a7190f92e89ebf01f596ebdf6c1a9 (diff) | |
download | pkgsrc-c707176e99ca3e9b70f4b6d5391b3bef2958d0e8.tar.gz |
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.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/modular-xorg-server/distinfo | 3 | ||||
-rw-r--r-- | x11/modular-xorg-server/patches/patch-ah | 22 |
2 files changed, 1 insertions, 24 deletions
diff --git a/x11/modular-xorg-server/distinfo b/x11/modular-xorg-server/distinfo index 12220cfee8d..3905d295658 100644 --- a/x11/modular-xorg-server/distinfo +++ b/x11/modular-xorg-server/distinfo @@ -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 diff --git a/x11/modular-xorg-server/patches/patch-ah b/x11/modular-xorg-server/patches/patch-ah deleted file mode 100644 index acd9a80ccba..00000000000 --- a/x11/modular-xorg-server/patches/patch-ah +++ /dev/null @@ -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, |