Re: [PATCH xauth] usage(): Print summary for the -n option

2015-05-15 Thread Hans de Goede
Hi, On 14-05-15 03:14, Alan Coopersmith wrote: Reviewed-by: Alan Coopersmith alan.coopersm...@oracle.com Thanks, pushed. Regards, Hans ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info:

Re: [PATCH v2 1/3] dix: Add unaccelerated valuators to the ValuatorMask

2015-05-15 Thread Hans de Goede
Hi, On 07-05-15 07:42, Peter Hutterer wrote: Allows a mask to carry both accelerated and unaccelerated motion at the same time. This is required for xf86-input-libinput where the pointer acceleration happens in libinput already, but parts of the server, specifically raw events and DGA rely on

Re: Receiving PropertyNotify events for the root window.

2015-05-15 Thread The Rasterman
On Fri, 15 May 2015 13:19:44 +0300 Yaron Cohen-Tal yaro...@gmail.com said: Hi, I'd like to be notified about PropertyNotify events of the root window, for example to be notified when its _NET_CURRENT_DESKTOP property is changed. As I didn't create the root window, I don't know how to be

Receiving PropertyNotify events for the root window.

2015-05-15 Thread Yaron Cohen-Tal
Hi, I'd like to be notified about PropertyNotify events of the root window, for example to be notified when its _NET_CURRENT_DESKTOP property is changed. As I didn't create the root window, I don't know how to be notified of events related to it, of if it's at all possible. Thanx, Yaron.

Re: [PATCH libinput] filter: add Simon's copyright

2015-05-15 Thread Hans de Goede
Hi, On 06-05-15 05:20, Peter Hutterer wrote: This code was largely lifted from the X server in bb25b2ad297891430606c367bfabc but didn't take the copyright messages that applied to that code. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net LGTM: Reviewed-by: Hans de Goede

Re: Receiving PropertyNotify events for the root window.

2015-05-15 Thread Yaron Cohen-Tal
Great, thanx! On Fri, May 15, 2015 at 1:38 PM, Carsten Haitzler ras...@rasterman.com wrote: On Fri, 15 May 2015 13:19:44 +0300 Yaron Cohen-Tal yaro...@gmail.com said: Hi, I'd like to be notified about PropertyNotify events of the root window, for example to be notified when its

Re: [PATCH 2/7] Add 'likely' and 'unlikely' macros

2015-05-15 Thread Peter Harris
On 2015-05-15 01:48, Alan Coopersmith wrote: Speaking of which, something I've wondered about for a while, but never had time to test, is if telling the server to optimize for valid requests would make a difference, such as: #define REQUEST_AT_LEAST_SIZE(req) \ -if ((sizeof(req) 2)

Re: [PATCH 2/7] Add 'likely' and 'unlikely' macros

2015-05-15 Thread Alan Coopersmith
On 05/15/15 03:34 PM, Peter Harris wrote: On 2015-05-15 01:48, Alan Coopersmith wrote: Speaking of which, something I've wondered about for a while, but never had time to test, is if telling the server to optimize for valid requests would make a difference, such as: #define

Re: x11-utils: xprop -spy leaks memory

2015-05-15 Thread Tomas Janousek
Hello, On Tue, Jan 13, 2015 at 02:38:39AM +0100, DesDZ wrote: There seems to be a memory leak in the xprop tool, when using the -spy option. Pulseaudio uses that option to know when the X session ends, as an example. On my (long-running) X session, xprop memory usage was steadily growing

Re: x11-utils: xprop -spy leaks memory

2015-05-15 Thread Alan Coopersmith
On 05/15/15 09:55 AM, Tomas Janousek wrote: Hello, On Tue, Jan 13, 2015 at 02:38:39AM +0100, DesDZ wrote: There seems to be a memory leak in the xprop tool, when using the -spy option. Pulseaudio uses that option to know when the X session ends, as an example. On my (long-running) X session,

[PATCH] Make configure test for LD_NO_UNDEFINED_FLAG on Solaris work w/autoconf 2.69

2015-05-15 Thread Alan Coopersmith
After upgrading from autoconf 2.68 to 2.69, this test started failing with conftest.c, line 149: undefined symbol: NULL so use a raw 0 pointer to avoid header dependencies in the autoconf generated test case. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |2 +-

[PATCH 2/2] Revert Revert glx/dri2: Disable AIGLX if indirect GLX is disabled

2015-05-15 Thread Adam Jackson
The previous fix to enable GLX extensions in the swrast path means that now we'll get GLX_ARB_create_context and friends enabled (assuming you have a swrast driver installed, which you ought to). This reverts commit bf6344e1913a5d24c2d68eaca999ea3d71e1b707. Signed-off-by: Adam Jackson

Re: [PATCH v2 2/2] systemd-logind: Only use systemd-logind integration together with keeptty

2015-05-15 Thread Aaron Plattner
On 04/30/2015 05:24 AM, Hans de Goede wrote: systemd-logind integration does not work when starting X on a new tty, as that detaches X from the current session and after hat systemd-logind revokes all rights any already open fds and refuses to open new fds for X. This means that currently e.g.

[PATCH try2] dix: Send KeyPress and KeyRelease events to the XACE_KEY_AVAIL hook

2015-05-15 Thread Andrew Eikum
While it's documented in the XACE spec, the XACE_KEY_AVAIL hook is currently never actually invoked by the xserver. This hook was added in 13c6713c82 (25 Aug 2006), but as the keyboard processing was moved into XKB, the hook was forgotten and silently dropped. The code calling this hook was

[PATCH 1/2] glx/swrast: Do more GLX extension setup

2015-05-15 Thread Adam Jackson
This gets you nice things like core contexts when using Xvfb. Also, no, MESA_copy_sub_buffer is not enabled automatically. Signed-off-by: Adam Jackson a...@redhat.com --- glx/glxdriswrast.c | 37 ++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git