Re: [PATCH evtest] Use versionsort instead of alphasort

2013-05-31 Thread Benjamin Tissoires
On Fri, May 31, 2013 at 7:46 AM, Peter Hutterer peter.hutte...@who-t.net wrote: Having /dev/input/event10 sort after /dev/input/event9 almost makes me think the future is here. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net Reviewed-by: Benjamin Tissoires benjamin.tissoi...@gmail.com

Re: [xinit] XSLASHGLOB

2013-05-31 Thread Thomas Klausner
Hi Alan other X.Org developers! Can you please take a look at this? No comments for two months, but no commit either. I've also asked about a patch I sent last August that had no feedback, for xrdb. I'm planning on sending more diffs soon but wanted to get the old stuff committed first.

Re: [PATCH:xrdb] Add a command line flag -cppargs which allows passing arguments to cpp (while still complying with the access(2) check for the cpp executable).

2013-05-31 Thread Thomas Klausner
Any comments? Thomas On Thu, Aug 23, 2012 at 04:48:10PM +0200, Thomas Klausner wrote: See thread starting at http://mail-index.netbsd.org/tech-x11/2009/12/01/msg000687.html --- man/xrdb.man | 4 xrdb.c | 27 +++ 2 files changed, 27 insertions(+), 4

Re: [xinit] XSLASHGLOB

2013-05-31 Thread Alan Coopersmith
On 05/31/13 02:57 AM, Thomas Klausner wrote: Can you please take a look at this? No comments for two months, but no commit either. Sorry, I've been a bit busy for the past 3-4 months dealing with the security fixes and pretty much ignoring most other patch submissions, and it appears no one

[w...@netbsd.org: [PATCH:xinit] Use xinitrc.d/?*.sh as the matching pattern instead of needing a fragile sed substitution XSLASHGLOB to produce xinitrc.d/*.sh. (If that were used literally the slash-s

2013-05-31 Thread Thomas Klausner
Hi Alan! Here it is again, as requested. Hope the forward works fine. Thanks for looking at this, Thomas - Forwarded message from Thomas Klausner w...@netbsd.org - Date: Thu, 4 Apr 2013 14:58:30 +0200 From: Thomas Klausner w...@netbsd.org To: xorg-devel@lists.x.org, Alan Coopersmith

Re: [w...@netbsd.org: [PATCH:xinit] Use xinitrc.d/?*.sh as the matching pattern instead of needing a fragile sed substitution XSLASHGLOB to produce xinitrc.d/*.sh. (If that were used literally the sla

2013-05-31 Thread Alan Coopersmith
On 05/31/13 07:32 AM, Thomas Klausner wrote: Hi Alan! Here it is again, as requested. Hope the forward works fine. Thanks - it worked has been pushed: To ssh://git.freedesktop.org/git/xorg/app/xinit ef3d1d6..79fd433 master - master -- -Alan Coopersmith-

[PATCH 1/2] xrandr: Use more decimal places when printing various rates

2013-05-31 Thread ville . syrjala
From: Ville Syrjälä ville.syrj...@linux.intel.com Using just one decimal place for dotclock and refresh rates loses quite a bit of information. When dealing with 60Hz vs. 59.94Hz refresh rate modes for example, it's useful to see at least two decimal places. For the dotclock in similar cases,

[PATCH 2/2] xrandr: Use floating point for VTotal when calculating refresh rate

2013-05-31 Thread ville . syrjala
From: Ville Syrjälä ville.syrj...@linux.intel.com Interlaced modes generally have an odd VTotal, so we lose half a line from VTotal when we divide by two. That causes the final refresh rate to be slightly off. Make VTotal a double to avoid the problem. Signed-off-by: Ville Syrjälä

Re: Xv and alignment requirements

2013-05-31 Thread Daniel Drake
On Thu, May 30, 2013 at 4:31 PM, Daniel Stone dan...@fooishbar.org wrote: No bigs - pretty much all hardware has this requirement! The QueryImageAttributes Xv hook lets you specify what the pitch has to be for each plane, so just round up from the width and set it there. Clients do (and have

[PATCH xts 1/3] Fix automatic configuration of BackingStores

2013-05-31 Thread Peter Harris
xdpyinfo reports NO, WHEN MAPPED or YES, but XT_DOES_BACKING_STORE expects a 0, 1, or 2. Signed-off-by: Peter Harris phar...@opentext.com --- This bumps the minimum version of Perl required up to 5.10. Both RHEL and Debian stable have perl 5.10. Is there anybody out there who runs XTS on a

[PATCH xts 2/3] Disable ColormapNotify test if implicit colormaps

2013-05-31 Thread Peter Harris
If the server supports more than one simultaneously installed colormap, it probably does implicit installation too. If the server implicitly installs the colormap when it is created, there will be no ColormapNotify when InstallColormap is called. In that case, the event count will be wrong, and

[PATCH xts 3/3] Fix XSetWMSizeHints et al.

2013-05-31 Thread Peter Harris
Xlib, since release 1.1.2, only transmits fields for which the corresponding flags bit is set (to avoid a potential information leak). Set the flags field to include all the fields to be tested. Signed-off-by: Peter Harris phar...@opentext.com --- xts5/Xlib15/XGetWMNormalHints.m

Re: [PATCH 0/5] integer overflows in Xdmx Xephyr

2013-05-31 Thread Alan Coopersmith
On 05/23/13 09:27 AM, Alan Coopersmith wrote: As part of the report of the security bugs announced this morning, the same researcher also reported similar issues in the client-side GLX DRI code in the Xdmx Xephyr X servers. Since these are not normally installed setuid or otherwise with

Re: [PATCH 0/2] Adding some 'const' qualifiers

2013-05-31 Thread Alan Coopersmith
On 05/ 1/13 01:39 AM, Christophe wrote: Hello, I am proposing 2 patches in order to improve a little bit things for the compiler. The first patch changes only internal stuff, so there's no risk. The second patch however modifies the external API, but I believe there is no risk because it does

Re: [PATCH] Fix libXpm build with NO_ZPIPE

2013-05-31 Thread Alan Coopersmith
On 05/27/13 12:32 AM, Claudio Bley wrote: When NO_ZPIPE is defined, fcntl.h is not included in WrFFrI.c although OpenWriteFile uses open, O_WRONLY, O_CREAT and O_TRUNC. * src/WrFFrI.c: unconditionally include fcntl.h regardless of NO_ZPIPE being defined or not. --- Note, this fixes