summary refs log tree commit diff
path: root/pkgs/tools/X11/wmctrl/64-bit-data.patch
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-07-09 21:50:58 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-07-09 21:54:02 +0200
commitc4ad4b8802280ba895c467e4a150f84b74b95436 (patch)
treecf58d0b61ff5de63a131f23addc9b089a906a356 /pkgs/tools/X11/wmctrl/64-bit-data.patch
parente2b7492b2e647a4ea67802a97de2a0cef3dc2e5f (diff)
downloadnixlib-c4ad4b8802280ba895c467e4a150f84b74b95436.tar
nixlib-c4ad4b8802280ba895c467e4a150f84b74b95436.tar.gz
nixlib-c4ad4b8802280ba895c467e4a150f84b74b95436.tar.bz2
nixlib-c4ad4b8802280ba895c467e4a150f84b74b95436.tar.lz
nixlib-c4ad4b8802280ba895c467e4a150f84b74b95436.tar.xz
nixlib-c4ad4b8802280ba895c467e4a150f84b74b95436.tar.zst
nixlib-c4ad4b8802280ba895c467e4a150f84b74b95436.zip
wmctrl: apply patch from debian to fix listing windows
Diffstat (limited to 'pkgs/tools/X11/wmctrl/64-bit-data.patch')
-rw-r--r--pkgs/tools/X11/wmctrl/64-bit-data.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/tools/X11/wmctrl/64-bit-data.patch b/pkgs/tools/X11/wmctrl/64-bit-data.patch
new file mode 100644
index 000000000000..3ec1c913ffea
--- /dev/null
+++ b/pkgs/tools/X11/wmctrl/64-bit-data.patch
@@ -0,0 +1,32 @@
+Description: Correct 64 Architecture implementation of 32 bit data
+Author: Chris Donoghue <cdonoghu@gmail.com>
+Bug-Debian: http://bugs.debian.org/362068
+
+--- wmctrl-1.07.orig/main.c
++++ wmctrl-1.07/main.c
+@@ -1425,6 +1425,16 @@ static gchar *get_property (Display *dis
+      *
+      * long_length = Specifies the length in 32-bit multiples of the
+      *               data to be retrieved.
++     *
++     * NOTE:  see 
++     * http://mail.gnome.org/archives/wm-spec-list/2003-March/msg00067.html
++     * In particular:
++     *
++     * 	When the X window system was ported to 64-bit architectures, a
++     * rather peculiar design decision was made. 32-bit quantities such
++     * as Window IDs, atoms, etc, were kept as longs in the client side
++     * APIs, even when long was changed to 64 bits.
++     *
+      */
+     if (XGetWindowProperty(disp, win, xa_prop_name, 0, MAX_PROPERTY_VALUE_LEN / 4, False,
+             xa_prop_type, &xa_ret_type, &ret_format,     
+@@ -1441,6 +1451,8 @@ static gchar *get_property (Display *dis
+ 
+     /* null terminate the result to make string handling easier */
+     tmp_size = (ret_format / 8) * ret_nitems;
++    /* Correct 64 Architecture implementation of 32 bit data */
++    if(ret_format==32) tmp_size *= sizeof(long)/4;
+     ret = g_malloc(tmp_size + 1);
+     memcpy(ret, ret_prop, tmp_size);
+     ret[tmp_size] = '\0';