[PATCH xproto] Do not use visibility attributes on MinGW

2012-10-15 Thread Yaakov (Cygwin/X)
From: Yaakov Selkowitz Signed-off-by: Yaakov Selkowitz --- Xfuncproto.h.in |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Xfuncproto.h.in b/Xfuncproto.h.in index 3eac5d5..8256fec 100644 --- a/Xfuncproto.h.in +++ b/Xfuncproto.h.in @@ -83,7 +83,7 @@ in this Software wit

[PATCH] xf86: Fix non-PCI configuration-less setups

2012-10-15 Thread Thierry Reding
For non-PCI video devices, such as those found on many ARM embedded systems, the X server currently requires the BusID option to specify the full path to the DRM device's sysfs node in order to properly match it against the probed platform devices. In order to allow X to start up properly if eithe

Re: [PATCH 2/3] xfree86: os-support: fix old-style function definition warnings

2012-10-15 Thread Alan Coopersmith
On 10/14/12 11:44 PM, Yaakov (Cygwin/X) wrote: > From: Yaakov Selkowitz > > Signed-off-by: Yaakov Selkowitz > --- > hw/xfree86/os-support/bus/nobus.c |2 +- > hw/xfree86/os-support/shared/agp_noop.c|2 +- > hw/xfree86/os-support/shared/ioperm_noop.c |4 ++-- > hw/xfree8

[PATCH] xf86: Fix build against recent Linux kernel

2012-10-15 Thread Thierry Reding
Recent Linux kernels reworked the linux/input.h header file, which is now part of the "user-space API" and the include guard has an additional _UAPI prefix. Signed-off-by: Thierry Reding --- hw/xfree86/common/xf86str.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree8

Re: [PATCH xproto] Do not use visibility attributes on MinGW

2012-10-15 Thread Colin Harrison
Hi, That patch is essential. Reviewed-by and Tested-by: Colin Harrison Thanks, Colin Harrison ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel

Re: [PATCH] xf86: Fix build against recent Linux kernel

2012-10-15 Thread Julien Cristau
On Mon, Oct 15, 2012 at 19:36:58 +0200, Thierry Reding wrote: > Recent Linux kernels reworked the linux/input.h header file, which is > now part of the "user-space API" and the include guard has an additional > _UAPI prefix. > Any way we can avoid depending on their header guard? Cheers, Julien

[PATCH] Fix reversed comment.

2012-10-15 Thread Ángel González
Commit 6045506be0cebca4ebbe943ae77f020aafa703d4 changed back the behavior to only allow the trusted extensions to the untrusted clients, but left the 8b5d21cc1d1f4e9d20e5d5eca44cb1e60a419763 comment intended for Security*Un*trustedExtensions saying that "untrusted clients shouldn't have access to t

Re: Problem with touchscreen events and grabs

2012-10-15 Thread Peter Hutterer
On Fri, Oct 12, 2012 at 03:38:24PM +0200, Thierry Reding wrote: > Hi, > > I've been seeing a very strange issue. Originally this was observed when > using a browser with an onscreen keyboard. It would sometimes happen > that the keys on the keyboard would get stuck and be repeatedly sent. > > Whi

[PATCH xorg-gtest 1/3] tests: drop gtest.h include, xorg-gtest.h pulls it in anyway

2012-10-15 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- test/xserver-test.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test/xserver-test.cpp b/test/xserver-test.cpp index 103657c..d73364e 100644 --- a/test/xserver-test.cpp +++ b/test/xserver-test.cpp @@ -4,7 +4,6 @@ #include #include -#include #inclu

[PATCH xorg-gtest 3/3] include: add inclusion guards to xorg-gtest.h

2012-10-15 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- include/xorg/gtest/xorg-gtest.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/xorg/gtest/xorg-gtest.h b/include/xorg/gtest/xorg-gtest.h index a61bc35..ccb3caa 100644 --- a/include/xorg/gtest/xorg-gtest.h +++ b/include/xorg/gtest/xorg-gtest.h @@

[PATCH xorg-gtest 2/3] include: add XORG_TESTCASE() macro for standardised printing of descriptions

2012-10-15 Thread Peter Hutterer
Signed-off-by: Peter Hutterer --- include/xorg/gtest/xorg-gtest.h | 6 ++ test/device-test.cpp| 6 +++--- test/process-test.cpp | 22 +++--- test/xserver-test.cpp | 6 +++--- 4 files changed, 23 insertions(+), 17 deletions(-) diff --git a/in

Re: [PATCH] xf86: Fix build against recent Linux kernel

2012-10-15 Thread Thierry Reding
On Mon, Oct 15, 2012 at 08:33:59PM +0200, Julien Cristau wrote: > On Mon, Oct 15, 2012 at 19:36:58 +0200, Thierry Reding wrote: > > > Recent Linux kernels reworked the linux/input.h header file, which is > > now part of the "user-space API" and the include guard has an additional > > _UAPI prefix.

[PATCH] randr: export more provider property symbols

2012-10-15 Thread Yaakov (Cygwin/X)
From: Yaakov Selkowitz These were added as part of commit 66d92afeaeed9f4a19267d95a1f81b9bf27162a5 but never declared or exported. Fixes warnings: rrproviderproperty.c:255:1: warning: no previous prototype for 'RRPostProviderPendingProperties' rrproviderproperty.c:327:1: warning: no previous p

Re: [PATCH] randr: export more provider property symbols

2012-10-15 Thread Dave Airlie
On Tue, Oct 16, 2012 at 4:26 PM, Yaakov (Cygwin/X) wrote: > From: Yaakov Selkowitz > > These were added as part of commit 66d92afeaeed9f4a19267d95a1f81b9bf27162a5 > but never declared or exported. Fixes warnings: > > rrproviderproperty.c:255:1: warning: no previous prototype for > 'RRPostProvid

Re: Problem with touchscreen events and grabs

2012-10-15 Thread Thierry Reding
On Tue, Oct 16, 2012 at 01:09:53PM +1000, Peter Hutterer wrote: > On Fri, Oct 12, 2012 at 03:38:24PM +0200, Thierry Reding wrote: > > Hi, > > > > I've been seeing a very strange issue. Originally this was observed when > > using a browser with an onscreen keyboard. It would sometimes happen > > th