Logitech K800 Keyboard: No dead/accent keys

2013-01-15 Thread Andreas Tscharner
Please CC me as I am not subscribed to the list! Hello World, I have a Logitech K800 keyboard with an US international layout (used in Debian Sid). Problem: There are no accent/dead keys, although I set it up as us-intl. Instead I always get the quotes or double-quotes directly. This is bad,

[ANNOUNCE] xf86-video-vmware 13.0.0

2013-01-15 Thread Zack Rusin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Release for Xserver 1.13. ABI bump plus bug fixes. A must have for all users of the Xserver 1.13. Brian Paul (1): vmwgfx: set the XA_FLAG_SHARED flag for composite dest surfaces Dave Airlie (3): vmware: port vmware driver to new compat

[ANNOUNCE] ico 1.0.4

2013-01-15 Thread Alan Coopersmith
ico is a simple animation program that may be used for testing various X11 operations and extensions. This minor maintenance release includes several years of build improvements, cleanups, and bug fixes; including making the build configuration scripts compatible with automake-1.13. Alan

[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

[ANNOUNCE] xf86-input-vmmouse 13.0.0

2013-01-15 Thread Zack Rusin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bugfix release for Xserver 1.13. Well tested by our QE so it's advisable to upgrade. Peter Hutterer (3): Fetch the udev dir from udev.pc instead of guessing based on prefix Use sigsafe logging in ReadInput path Fix compiler

[ANNOUNCE] xf86-video-vmware 13.0.0

2013-01-15 Thread Zack Rusin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Release for Xserver 1.13. ABI bump plus bug fixes. A must have for all users of the Xserver 1.13. Brian Paul (1): vmwgfx: set the XA_FLAG_SHARED flag for composite dest surfaces Dave Airlie (3): vmware: port vmware driver to new compat

[ANNOUNCE] ico 1.0.4

2013-01-15 Thread Alan Coopersmith
ico is a simple animation program that may be used for testing various X11 operations and extensions. This minor maintenance release includes several years of build improvements, cleanups, and bug fixes; including making the build configuration scripts compatible with automake-1.13. Alan

Bug#695757: xserver-xorg-video-radeon: Memory leak in Xorg when using oxygen-gtk as gtk2 theme

2013-01-15 Thread Michel Dänzer
On Mon, 2013-01-14 at 23:29 +0100, bluebubble wrote: Il 13/12/12 10:46, Michel Dänzer ha scritto: If yes, you'll need to investigate the leak with valgrind or some other tool for this. Note that such tools may not help on X server shutdown, as the X server may still clean up the memory at

[Bug 59211] Radeon FireGL RV630 black screen after bootup, incorrect modesetting

2013-01-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59211 --- Comment #11 from Alex Deucher ag...@yahoo.com --- Created attachment 73095 -- https://bugs.freedesktop.org/attachment.cgi?id=73095action=edit possible fix The attached kernel patch should fix the issue. -- You are receiving this mail

[Bug 59211] Radeon FireGL RV630 black screen after bootup, incorrect modesetting

2013-01-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59211 Alex Deucher ag...@yahoo.com changed: What|Removed |Added Assignee|xorg-driver-ati@lists.x.org