[PATCH libX11 2/2] nls/Makefile.am: Use LOG_COMPILER

2013-01-15 Thread Quentin Glidic
TESTS_ENVIRONMENT is deprecated Signed-off-by: Quentin Glidic sardemff7+...@sardemff7.net --- nls/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nls/Makefile.am b/nls/Makefile.am index bef2d2b..53eaacd 100644 --- a/nls/Makefile.am +++ b/nls/Makefile.am @@ -37,7

[PATCH libX11 1/2] nls/Makefile.am: Remove unneeded $(srcdir)

2013-01-15 Thread Quentin Glidic
Signed-off-by: Quentin Glidic sardemff7+...@sardemff7.net --- nls/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nls/Makefile.am b/nls/Makefile.am index 0eced4c..bef2d2b 100644 --- a/nls/Makefile.am +++ b/nls/Makefile.am @@ -38,7 +38,7 @@ locale.dir:

Re: [PATCH] libpciaccess: Add domain support for sparc platform

2013-01-15 Thread Alan Coopersmith
On 12/18/12 04:07 PM, Henry Zhao wrote: From: Henry Zhao henry.z...@oracle.com Date: Tue, 18 Dec 2012 15:10:46 -0800 Subject: [PATCH] libpciaccess: Add domain support for sparc platform Add domain support for sparc platform. As a result the code of finding nexus node for a device in sparc

[PATCH evdev 1/4] Move allocation of EvdevRec into a helper function

2013-01-15 Thread Peter Hutterer
Makes it easier to initialise everything to the right values. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- src/evdev.c | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/evdev.c b/src/evdev.c index 5667dc1..baa7ac1 100644 --- a/src/evdev.c +++

[PATCH evdev 2/4] Move some stuff into the new alloc function

2013-01-15 Thread Peter Hutterer
Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- src/evdev.c | 29 ++--- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/src/evdev.c b/src/evdev.c index baa7ac1..a9b1fd2 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -2464,7 +2464,25 @@

[PATCH evdev 3/4] Split rel and abs axis mapping into two separate arrays

2013-01-15 Thread Peter Hutterer
This will enable a device to have relative scrolling axes in addition to absolute axes (required by the QEMU tablet). Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- src/emuWheel.c | 2 +- src/evdev.c| 66 +++--- src/evdev.h

[PATCH evdev 4/4] Allow relative scroll valuators on absolute devices (#54387)

2013-01-15 Thread Peter Hutterer
Special-case RHEL_WHEEL, RHEL_HWHEEL and REL_DIAL to add scroll valuators for those axes in addition to the absolute axes. X.Org Bug 54387 http://bugs.freedesktop.org/show_bug.cgi?id=54387 Signed-off-by: Peter Hutterer peter.hutte...@who-t.net --- src/evdev.c | 88

Re: [PATCH:xev 2/2] Use strncasecmp if available, instead of a tolower loop strncmp

2013-01-15 Thread Peter Hutterer
On Mon, Jan 14, 2013 at 11:29:46PM -0800, Alan Coopersmith wrote: Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |3 +++ xev.c| 12 +--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index

Re: [PATCH:xev 2/2] Use strncasecmp if available, instead of a tolower loop strncmp

2013-01-15 Thread Alan Coopersmith
On 01/15/13 03:51 PM, Peter Hutterer wrote: +#ifndef HAVE_STRNCASECMP char *cp; for (cp = s; *cp; cp++) { if (isascii (*cp) isupper (*cp)) *cp = tolower (*cp); } +#define strncasecmp strncmp +#endif -if (strncmp (s, notuseful, len) == 0) return

Re: [PATCH:xev 2/2] Use strncasecmp if available, instead of a tolower loop strncmp

2013-01-15 Thread Peter Hutterer
On Tue, Jan 15, 2013 at 04:07:58PM -0800, Alan Coopersmith wrote: On 01/15/13 03:51 PM, Peter Hutterer wrote: +#ifndef HAVE_STRNCASECMP char *cp; for (cp = s; *cp; cp++) { if (isascii (*cp) isupper (*cp)) *cp = tolower (*cp); } +#define strncasecmp

Re: [PATCH libX11 1/2] nls/Makefile.am: Remove unneeded $(srcdir)

2013-01-15 Thread Gaetan Nadon
On 13-01-15 04:07 PM, Quentin Glidic wrote: Signed-off-by: Quentin Glidic sardemff7+...@sardemff7.net --- nls/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nls/Makefile.am b/nls/Makefile.am index 0eced4c..bef2d2b 100644 --- a/nls/Makefile.am +++

[PATCH:libXfont] Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS

2013-01-15 Thread Alan Coopersmith
Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html - Support for the long-deprecated INCLUDES variable will be removed altogether in Automake 1.14. The AM_CPPFLAGS variable should be used instead. This variable was deprecated in Automake releases prior to 1.10,

[PATCH] dix: support the transformation matrix for relative devices.

2013-01-15 Thread Peter Hutterer
The transformation matrix we previously stored was a scaled matrix based on the axis ranges of the device. For relative movements, the scaling is not required (or desired). Store two separate matrices, one as requested by the client, one as the product of [scale . matrix . inv_scale]. Depending