Re: [PATCH] Export include/input.h:GetMaster() function

2011-10-12 Thread Adam Tkac
On 10/12/2011 06:27 AM, Peter Hutterer wrote: On Tue, Oct 11, 2011 at 03:12:56PM +0200, Adam Tkac wrote: attached patch exports the GetMaster() function, it is needed by TigerVNC's libvnc.so module. Please merge it also to 1.11 release, thank you! where/how do you need this? afaict this

[PATCH] test: fix input test

2011-10-12 Thread Dave Airlie
From: Dave Airlie airl...@redhat.com The test was memsetting the wrong thing, this fixes make check in my tinderbox. Signed-off-by: Dave Airlie airl...@redhat.com --- test/input.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/input.c b/test/input.c index

Re: [PATCH] test: fix input test

2011-10-12 Thread Daniel Stone
Hi, On 12 October 2011 09:59, Dave Airlie airl...@gmail.com wrote: The test was memsetting the wrong thing, this fixes make check in my tinderbox. Rather. +++ b/test/input.c @@ -1315,11 +1315,11 @@ static void dix_get_master(void)     memset(kbd, 0, sizeof(DeviceIntRec));    

[PATCH] xfree86: Add Loongson MIPS support

2011-10-12 Thread Matt Kraai
Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=41038 --- hw/xfree86/dri/sarea.h |2 ++ hw/xfree86/os-support/linux/lnx_video.c | 20 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) I asked the person that I received this patch from,

Re: [PATCH] xfree86: Add Loongson MIPS support

2011-10-12 Thread Alan Coopersmith
On 10/11/11 11:58 PM, Matt Kraai wrote: Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=41038 --- hw/xfree86/dri/sarea.h |2 ++ hw/xfree86/os-support/linux/lnx_video.c | 20 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) I asked the

Re: [PATCH] xfree86: Add Loongson MIPS support

2011-10-12 Thread Mark Kettenis
Date: Wed, 12 Oct 2011 07:48:00 -0700 From: Alan Coopersmith alan.coopersm...@oracle.com On 10/11/11 11:58 PM, Matt Kraai wrote: Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=41038 --- hw/xfree86/dri/sarea.h |2 ++ hw/xfree86/os-support/linux/lnx_video.c

Re: [PATCH-V4] xserver: Optional backtrace handler

2011-10-12 Thread Keith Packard
On Thu, 6 Oct 2011 13:19:35 +0100, Barry Scott barry.sc...@onelan.co.uk wrote: Is there anything else I need to do to make this patch acceptable for inclusion in Xorg? Two things: 1. This option needs to be restricted to root, much like many other options in the server (-modulepath,

[Patch] Let luit use posix_openpt()

2011-10-12 Thread Ed Schouten
Hi all, A FreeBSD reported that luit does not work properly when omitting the legacy pseudo-terminal from the kernel. This is because luit attempts to open /dev/ptmx, instead of using the POSIX function posix_openpt(). The attached patch should fix this. Best regards, -- Ed Schouten

Re: [Patch] Let luit use posix_openpt()

2011-10-12 Thread Ed Schouten
* Ed Schouten e...@80386.nl, 20111012 20:56: The attached patch should fix this. Hmmm... I seem to remember you folks prefer to have the Signed-off-by tag in the commit message. I've attached a new patch. -- Ed Schouten e...@80386.nl WWW: http://80386.nl/ From

Re: [PATCHv2] makekeys: Fix build/target word size mismatch when cross-compiling

2011-10-12 Thread Daniel Stone
Hi, On 22 September 2011 23:44, Derek Buitenhuis derek.buitenh...@gmail.com wrote: Since makekeys is built using build environment's gcc and runs natively, we have to make sure that the size of the Signature type is the same on both the native environment and the target, otherwise we get

Re: [PATCH-V4] xserver: Optional backtrace handler

2011-10-12 Thread Alan Coopersmith
On 10/12/11 10:50 AM, Keith Packard wrote: 2. I'd love to figure out how to fork at the time of the error; this would encourage people to actually use this option regularly. posix threads makes the usual libc fork() function take the malloc mutex across its operations, but I

Re: [PATCH] xfree86: Add Loongson MIPS support

2011-10-12 Thread Matt Turner
On Wed, Oct 12, 2011 at 2:58 AM, Matt Kraai kr...@ftbfs.org wrote: Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=41038 ---  hw/xfree86/dri/sarea.h                  |    2 ++  hw/xfree86/os-support/linux/lnx_video.c |   20 ++--  2 files changed, 20 insertions(+), 2

[PATCH v2 0/3] screen crossing changes again

2011-10-12 Thread Peter Hutterer
Same thing as before, this time with the option of non-zero desktop origin. untested for non-zero origins, I'm failing to actually configure this anywhere. Cheers, Peter ___ xorg-devel@lists.x.org: X.Org development Archives:

[PATCH v2 1/3] Store desktop dimensions in screenInfo.

2011-10-12 Thread Peter Hutterer
For Zaphod mode screen crossing handling we need to know the size of all screens together (i.e. the whole desktop size). Store that in the screenInfo to have it readily available in events. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- Changes to v1: - store x/y as well as

[PATCH v2 2/3] dix: extend rescaleValuatorAxis to take a minimum default

2011-10-12 Thread Peter Hutterer
Allow rescaling to non-zero based axis ranges as default (for when screen offsets are non-zero). Currently unused. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- Changes to v1: - new patch. this patch wasn't required in the v1 series. dix/getevents.c | 30

[PATCH v2 3/3] input: change pointer screen crossing behaviour for multiple ScreenRecs

2011-10-12 Thread Peter Hutterer
miPointerSetPosition traditionally took coordinates on a per-screen basis, triggering a screen switch when these went out-of-bounds. For absolute devices, this prevented screen crossing in the negative x/y direction. This patch changes the event generation patch to handle screen coordinates in a

Re: [PATCH-V4] xserver: Optional backtrace handler

2011-10-12 Thread Jeremy Huddleston
On Oct 12, 2011, at 6:12 PM, Alan Coopersmith wrote: On 10/12/11 10:50 AM, Keith Packard wrote: 2. I'd love to figure out how to fork at the time of the error; this would encourage people to actually use this option regularly. posix threads makes the usual libc fork() function

Re: transset

2011-10-12 Thread Arnaud Fontaine
Hello, Alan Coopersmith alan.coopersm...@oracle.com writes: Never migrated to git, or autoconf, or anything. I do have a git repo of it, with autoconf support added, that I was preparing for upload to xorg/apps once upon a time, but never finished getting there, and am still not sure

Re: [PATCH] Export include/input.h:GetMaster() function

2011-10-12 Thread Peter Hutterer
On Wed, Oct 12, 2011 at 12:44:00PM +0200, Adam Tkac wrote: On 10/12/2011 06:27 AM, Peter Hutterer wrote: On Tue, Oct 11, 2011 at 03:12:56PM +0200, Adam Tkac wrote: attached patch exports the GetMaster() function, it is needed by TigerVNC's libvnc.so module. Please merge it also to 1.11

Re: [PATCH v3] NEED_SYNC_REPLY flag should be in Xim not in Xic

2011-10-12 Thread Choe Hwanjin
I've updated my patch to make it look more like the patch from SuSE. My patch still have slight difference, because I've fix some bad tabs. See the attachment. 2011/10/12 Jeremy Huddleston jerem...@apple.com: On Oct 11, 2011, at 18:34, Choe Hwanjin wrote: I've made my patch again against

Re: [PATCH evdev, v2] Support smooth scrolling on wheel emulation

2011-10-12 Thread Peter Hutterer
On Thu, Oct 06, 2011 at 11:45:58PM +0200, Max Schwarz wrote: Hi Peter, you could make the support compiled in, but not compiled _out_. so even if you HAVE_SMOOTH_SCROLLING, the old bits are ready to go when enabled. if no smooth scrolling axis is otherwise present on the device, just post