Headsup: intent to do a libxtrans-1.3.4 release on Monday

2014-03-26 Thread Hans de Goede
Hi, $subject says it all, there is only 1 patch queued up for now, but that one patch fixes 100's of compiler warnings on systems using a newer glibc, and given all the trouble we've gone through to silence compiler warning this seems worth it. If you've anything else you would like to see added

[PATCH v2 2/2] xf86LogInit: log to XDG_DATA_HOME when not running as root

2014-03-26 Thread Hans de Goede
When no logfile was specified (xf86LogFileFrom == X_DEFAULT) and we're not running as root log to $XDG_DATA_HOME/xorg/Xorg.#.log as Xorg won't be able to log to the default /var/log/... when it is not running as root. Signed-off-by: Hans de Goede hdego...@redhat.com --- configure.ac

[PATCH:libxtrans 2/2] Cast ctype(3) function arguments to unsigned char.

2014-03-26 Thread Thomas Klausner
Fixes warnings on at least NetBSD. Signed-off-by: Thomas Klausner w...@netbsd.org --- Xtrans.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Xtrans.c b/Xtrans.c index 9a6dfbc..ada53d3 100644 --- a/Xtrans.c +++ b/Xtrans.c @@ -164,8 +164,8 @@ TRANS(SelectTransport) (const

[PATCH:libxtrans 1/2] Add missing headers for free() and strlen().

2014-03-26 Thread Thomas Klausner
Signed-off-by: Thomas Klausner w...@netbsd.org --- Xtrans.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Xtrans.c b/Xtrans.c index 735d7b8..9a6dfbc 100644 --- a/Xtrans.c +++ b/Xtrans.c @@ -48,6 +48,8 @@ from The Open Group. */ #include ctype.h +#include stdlib.h +#include string.h

Re: [PATCH v2 2/2] xf86LogInit: log to XDG_DATA_HOME when not running as root

2014-03-26 Thread Mark Kettenis
From: Hans de Goede hdego...@redhat.com Date: Wed, 26 Mar 2014 12:24:50 +0100 When no logfile was specified (xf86LogFileFrom == X_DEFAULT) and we're not running as root log to $XDG_DATA_HOME/xorg/Xorg.#.log as Xorg won't be able to log to the default /var/log/... when it is not running as

Re: [PATCH:libxtrans 1/2] Add missing headers for free() and strlen().

2014-03-26 Thread Mark Kettenis
From: Thomas Klausner w...@netbsd.org Date: Wed, 26 Mar 2014 12:49:31 +0100 Signed-off-by: Thomas Klausner w...@netbsd.org Reviewed-by: Mark Kettenis kette...@openbsd.org --- Xtrans.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Xtrans.c b/Xtrans.c index 735d7b8..9a6dfbc

Re: [PATCH xinit 1/3] Drop $RAWCPPFLAGS when generating startx

2014-03-26 Thread Gaetan Nadon
On 14-03-26 07:37 AM, Hans de Goede wrote: Hi, On 03/25/2014 06:22 PM, Gaetan Nadon wrote: On 14-03-25 07:56 AM, Hans de Goede wrote: startx.cpp contains things like #if defined(__SCO__), and $RAWCPPFLAGS contains -undef causing these to not get set. Signed-off-by: Hans de Goede

Re: [PATCH] gcc 4.2.1 doesn't support #pragma GCC diagnostic ignored

2014-03-26 Thread Jon TURNEY
On 09/02/2014 10:20, Matthieu Herrb wrote: os/log.c | 4 1 file changed, 4 insertions(+) diff --git os/log.c os/log.c index 8deb810..38193ee 100644 --- os/log.c +++ os/log.c @@ -195,7 +195,9 @@ LogInit(const char *fname, const char *backup) char *logFileName = NULL;

[PULL] glamor fixes, cleanups, and your polypoint.

2014-03-26 Thread Eric Anholt
Here's a series for reviewed, ready-to-go glamor code. I'd been holding off for a while expecting that someone would review the warning-fixing revert I sent out, but I removed it in the end so that we can get some stuff merged. The following changes since commit

Re: [PATCH] Revert glx: Make sure we get an FBConfig the root window's visual.

2014-03-26 Thread Julien Cristau
On Fri, Mar 21, 2014 at 13:51:05 -0700, Eric Anholt wrote: This reverts commit b5a61239e2fef167c229154d7919ff862503e3f3. Not only did I screw up and introduce a warning, it turns out glXChooseFBConfig() explicitly ignores this attribute. Thanks, GLX. Signed-off-by: Eric Anholt

Re: [PATCH 2/2] Fix build when configured --enable-debug

2014-03-26 Thread Julien Cristau
On Mon, Mar 24, 2014 at 17:32:10 +, Jon TURNEY wrote: Include os.h for ErrorF() to fix implicit-function-declaration warnings when configured with --enable-debug. hw/xfree86/parser/DRI.c: In function 'xf86parseDRISection': hw/xfree86/parser/DRI.c:87:5: error: implicit declaration of

Re: [PATCH v2 2/2] xf86LogInit: log to XDG_DATA_HOME when not running as root

2014-03-26 Thread Jasper St. Pierre
It seems to me like they should be in ~/.cache/, which is where non-important files that are mostly transient should go. On Wed, Mar 26, 2014 at 10:15 AM, Hans de Goede hdego...@redhat.com wrote: Hi, On 03/26/2014 12:51 PM, Mark Kettenis wrote: From: Hans de Goede hdego...@redhat.com

Re: [PATCH xinit 2/3] startx: Under Linux start X on the current VT

2014-03-26 Thread Jasper St. Pierre
On Tue, Mar 25, 2014 at 10:02 AM, Hans de Goede hdego...@redhat.com wrote: Hi, On 03/25/2014 02:50 PM, Julien Cristau wrote: On Tue, Mar 25, 2014 at 12:56:35 +0100, Hans de Goede wrote: When we let X allocate a new VT, systemd-logind will not recognize any processes running on this VT

Re: [PULL] glamor fixes, cleanups, and your polypoint.

2014-03-26 Thread Keith Packard
Eric Anholt e...@anholt.net writes: Eric Anholt (1): kdrive: Remove duplicated definitions of some XV-related structs. Gaetan Nadon (2): ephyr: typo where () should be $() in the Makefile - breaks make dist xfree86: glamor_egl subdir must be distributed - breaks

Re: [PULL] glamor fixes, cleanups, and your polypoint.

2014-03-26 Thread Keith Packard
Eric Anholt e...@anholt.net writes: Here's a series for reviewed, ready-to-go glamor code. I'd been holding off for a while expecting that someone would review the warning-fixing revert I sent out, but I removed it in the end so that we can get some stuff merged. Thanks for sending these

Re: [PATCH] Xephyr: restore initial window resize lost in xcb conversion

2014-03-26 Thread Keith Packard
Julien Cristau jcris...@debian.org writes: The XResizeWindow call wasn't replaced by the xcb equivalent, so we were no longer setting the initial window size, only wm size hints. Regression from commit a2b73da Xephyr: start converting hostx.c over to xcb Bugzilla: