[PATCH xf86-input-joystick] man: point out that the joystick module is not a joystick driver

2012-10-01 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- man/joystick.man | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/man/joystick.man b/man/joystick.man index 9f38ceb..274e4c5 100644 --- a/man/joystick.man +++ b/man/joystick.man @@ -19,7 +19,13 @@ Snipped for xorg.conf.d(5): .SH DESCR

Re: [PATCH xorg-gtest 2/2] Remove WaitForConnections()

2012-10-01 Thread Peter Hutterer
On Tue, Oct 02, 2012 at 01:22:47AM +0200, Daniel Martin wrote: > As we already know that the XServer is ready for connections due to it's > notification via SIGUSR1, we don't need to poll anymore. nice, thanks. Please remember to sign off patches though, I'm going to require that for patches to xo

[PATCH] xfree86: xf86CheckStrOption can take a const char* as dflt

2012-10-01 Thread Peter Hutterer
From: Jason Gerecke Fix additional gcc -Wwrite-strings warning in xf86 ddx Commit 09e4b78f missed a case. Signed-off-by: Jason Gerecke Reviewed-by: Peter Hutterer Signed-off-by: Peter Hutterer --- hw/xfree86/common/xf86Opt.h| 2 +- hw/xfree86/common/xf86Option.c | 2 +- 2 files changed,

Re: [PATCH 2/2] server/xi2: add touchscreen mouse pointer emulation test

2012-10-01 Thread Peter Hutterer
On Mon, Oct 01, 2012 at 04:46:28PM -0400, Daniel Drake wrote: > Add a test case based on the bug fixed by > http://lists.x.org/archives/xorg-devel/2012-September/033595.html > --- > tests/server/xi2.cpp | 131 > +++ > 1 file changed, 131 insertions(

Re: [PATCH 1/2] server/xi2: Fix N-Trig-MultiTouch file access

2012-10-01 Thread Peter Hutterer
On Mon, Oct 01, 2012 at 04:45:50PM -0400, Daniel Drake wrote: > These tests were failing because the filenames were wrong. > --- > tests/server/xi2.cpp | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/tests/server/xi2.cpp b/tests/server/xi2.cpp > index 9fd7713..c1e

Re: [PATCH] configure: Stop using AM_MAINTAINER_MODE

2012-10-01 Thread Gaetan Nadon
On 12-09-27 05:12 PM, Adam Jackson wrote: > All this does is make it so editing configure.ac or Makefile.am doesn't > rebuild the makefiles. Which is just stupid. > > Signed-off-by: Adam Jackson > --- > configure.ac | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/configure.ac b/configure

[PATCH xorg-integration-tests] Remove WaitForConnections()

2012-10-01 Thread Daniel Martin
WaitForConnections() was removed from xorg-gtest and superseded with a mechanism which gets notified by the XServer via SIGUSR1 when it's ready for connections. --- tests/common/helpers.cpp | 1 - tests/common/input-driver-test.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/tes

[PATCH xorg-gtest 2/2] Remove WaitForConnections()

2012-10-01 Thread Daniel Martin
As we already know that the XServer is ready for connections due to it's notification via SIGUSR1, we don't need to poll anymore. --- include/xorg/gtest/xorg-gtest-xserver.h | 5 - src/environment.cpp | 1 - src/xserver.cpp | 33 ---

[PATCH xorg-gtest 1/2] xserver: use SIGUSR1 to wait for XServer startup

2012-10-01 Thread Daniel Martin
Set the signal handler for SIGUSR1 to SIG_IGN. The XServer will test for this on startup and sends a SIGUSR1 when it's ready for connections. We wait for 1sec to receive this signal from the XServer. --- src/xserver.cpp | 31 +++ 1 file changed, 31 insertions(+) diff -

[PATCH xorg-gtest 0/2] don't poll, wait for SIGUSR1

2012-10-01 Thread Daniel Martin
With the first patch xorg-gtest will use the SIGUSR1 mechanism offered by the XServer to get notified when the XServer is ready to accept connections. Due to that we don't need to poll the XServer until it's ready and we can remove WaitForConnections(). That's what the second patch does. Round tr

Re: [PATCH] Update dri2proto.txt to reflect current extension contents

2012-10-01 Thread Eric Anholt
Keith Packard writes: > Add missing CreateDrawable/DestroyDrawable requests > Add MSC/SBC parameters to DRI2SwapBuffers > Complete revision history section. > Add brief description of the prime bits in driverType Sigh. I wish docs were part of the XCB proto instead, so that people could stop sc

[PATCH 2/2] server/xi2: add touchscreen mouse pointer emulation test

2012-10-01 Thread Daniel Drake
Add a test case based on the bug fixed by http://lists.x.org/archives/xorg-devel/2012-September/033595.html --- tests/server/xi2.cpp | 131 +++ 1 file changed, 131 insertions(+) diff --git a/tests/server/xi2.cpp b/tests/server/xi2.cpp index c1ec943.

[PATCH 1/2] server/xi2: Fix N-Trig-MultiTouch file access

2012-10-01 Thread Daniel Drake
These tests were failing because the filenames were wrong. --- tests/server/xi2.cpp | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/server/xi2.cpp b/tests/server/xi2.cpp index 9fd7713..c1ec943 100644 --- a/tests/server/xi2.cpp +++ b/tests/server/xi2.cpp @@ -65,7 +