[PATCH] Fix hw/xfree86/common/compiler.h for mips64

2013-10-11 Thread YunQiang Su
Mark mips64 as 64bit Use long as PORT_SIZE Signed-off-by: YunQiang Su wzss...@gmail.com --- hw/xfree86/common/compiler.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/xfree86/common/compiler.h b/hw/xfree86/common/compiler.h index c980bee..d25a5da 100644 ---

Re: [PATCH][util/macros] xorg-macros.m4.in: use the autoconf cache for XORG_CHECK_MALLOC_ZERO

2013-10-11 Thread Burton, Ross
Hi, On 11 October 2013 02:23, Gaetan Nadon mems...@videotron.ca wrote: If all modules expanding the macro are setting $enableval to auto, then I think it works fine. The macro doesn't take arguments, so by definition all modules are using auto as the default unless the build system is

[PATCH][util-macros][V2] xorg-macros.m4.in: remove option, use autoconf cache for XORG_CHECK_MALLOC_ZERO

2013-10-11 Thread Ross Burton
Improve configure speed by checking the autoconf cache before compiling and running the test. As this means cross-compilation environments can trivially seed this cache as appropriate, remove the cross-compiling value (which for embedded systems using uclibc is wrong). Finally remove the

Re: [PATCH][util/macros] xorg-macros.m4.in: use the autoconf cache for XORG_CHECK_MALLOC_ZERO

2013-10-11 Thread Burton, Ross
On 11 October 2013 10:24, Burton, Ross ross.bur...@intel.com wrote: I'm not sure what you mean. Personally I'd rip out the option entirely and rely on autodetection (for native builds) with autoconf site cache (for cross-compilation), but I left the patch in for minimal impact on other users.

Re: [PULL] GLX fixes and etc.

2013-10-11 Thread Adam Jackson
On Wed, 2013-10-09 at 13:51 -0700, Aaron Plattner wrote: On 10/09/2013 10:51 AM, Adam Jackson wrote: Adam Jackson (6): damage: Remove isWindow from the DamageRec xfree86: Bump to video ABI 15 and input ABI 20

Re: [PATCH] Fix hw/xfree86/common/compiler.h for mips64

2013-10-11 Thread Alan Coopersmith
On 10/11/13 01:12 AM, YunQiang Su wrote: -#elif defined(__mips__) || (defined(__arm32__) !defined(__linux__)) +#elif (defined(__mips__) || (defined(__arm32__) !defined(__linux__)) Why did you add the ( to that line? It seems both unnecessary and like it would break the ( ) balancing, and

[PATCH] Fix hw/xfree86/common/compiler.h for mips64

2013-10-11 Thread YunQiang Su
Mark mips64 as 64bit Use long as PORT_SIZE Signed-off-by: YunQiang Su wzss...@gmail.com --- hw/xfree86/common/compiler.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/xfree86/common/compiler.h b/hw/xfree86/common/compiler.h index c980bee..d25a5da 100644 ---

Re: [PATCH][util-macros][V2] xorg-macros.m4.in: remove option, use autoconf cache for XORG_CHECK_MALLOC_ZERO

2013-10-11 Thread Gaetan Nadon
On 13-10-11 08:24 AM, Ross Burton wrote: Improve configure speed by checking the autoconf cache before compiling and running the test. As this means cross-compilation environments can trivially seed this cache as appropriate, remove the cross-compiling value (which for embedded systems

Re: [PATCH input-vmmouse] tools: make install fails when user has no write permission in /lib

2013-10-11 Thread Gaetan Nadon
On 13-10-04 01:55 AM, Peter Hutterer wrote: On Mon, Sep 30, 2013 at 11:59:57PM -0400, Gaetan Nadon wrote: On 13-09-30 06:24 PM, Peter Hutterer wrote: On Mon, Sep 30, 2013 at 01:56:53PM -0400, Gaetan Nadon wrote: The location of the udevdir is obtained from pkg-config. This is generally

Re: [PULL] GLX fixes and etc.

2013-10-11 Thread Aaron Plattner
On 10/11/2013 08:08 AM, Adam Jackson wrote: On Wed, 2013-10-09 at 13:51 -0700, Aaron Plattner wrote: On 10/09/2013 10:51 AM, Adam Jackson wrote: Adam Jackson (6): damage: Remove isWindow from the DamageRec

[PATCH] glx: Add support for the new DRI loader entrypoint.

2013-10-11 Thread Eric Anholt
This is going to be exposed (and not the old entrypoint) for some DRI drivers once the megadrivers series lands, and the plan is to eventually transition all drivers to that. Hopefully this is unobtrusive enough to merge to stable X servers so that they can be compatible with new Mesa versions.