Re: [PATCH] XShmGetImage: fix censoring

2017-10-11 Thread Nikolay Martynov
Hi. One more kind ping on this. It has been sent quite a long time ago without any reply. It would really appreciate if someone could let me know if this is a correct mailing list or not? Thanks! 2017-09-21 10:06 GMT-04:00 Nikolay Martynov : > Hi. > > Just a kind ping. Is

[PATCH xserver] meson: Don't forget to define DEBUG!

2017-10-11 Thread Lyude Paul
Signed-off-by: Lyude Paul --- include/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/meson.build b/include/meson.build index 90f8de3cb..8894885c6 100644 --- a/include/meson.build +++ b/include/meson.build @@ -196,6 +196,9 @@

Re: [PATCH xserver] meson: Add xkb_bin_dir option

2017-10-11 Thread Peter Hutterer
On Wed, Oct 11, 2017 at 06:03:45PM -0400, Lyude Paul wrote: > Now that we can actually configure all of the directories xkb uses for > finding things, we can (finally, but only with meson) finally make it so > that with the correct meson configuration the Xserver will "just work" > without any

[PATCH xserver] meson: Add xkb_bin_dir option

2017-10-11 Thread Lyude Paul
Now that we can actually configure all of the directories xkb uses for finding things, we can (finally, but only with meson) finally make it so that with the correct meson configuration the Xserver will "just work" without any additional changes to the installation prefix after building. For the

Re: X SECURITY: allowed extensions for untrusted clients

2017-10-11 Thread Adam Jackson
On Fri, 2017-10-06 at 19:46 +, Uecker, Martin wrote: > Hi, > > I would like to use untrusted connections for remote > clients. Currently this does not work for me, because it is > too slow, and I always have to use trusted connections. > > So I wonder what it would take to expose some

Re: [PATCH xserver] glamor: Use GL_MESA_tile_raster_order for overlapping blits.

2017-10-11 Thread Keith Packard
Eric Anholt writes: >> Looks like you're also requiring nv_texture_barrier to use the new >> extension? > > texture_barrier is an explicit requirement of the new extension (it's > how get caches flushed between different overlapping blits). Makes sense to me. No other concerns

Re: [PATCH xserver] glamor: Use GL_MESA_tile_raster_order for overlapping blits.

2017-10-11 Thread Eric Anholt
Keith Packard writes: > [ Unknown signature status ] > Eric Anholt writes: > >> +/* Include the enums here for the moment, to keep from needing to bump >> epoxy. */ >> +#ifndef GL_TILE_RASTER_ORDER_FIXED_MESA >> +#define GL_TILE_RASTER_ORDER_FIXED_MESA

[PATCH] config/udev: Add sys/sysmacros.h include for major/minor functions for new glibc

2017-10-11 Thread Mart Raudsepp
Commits d732c36597fa and 84e3b96b5313 added the include to some files, but missed config/udev.c, where the major and minor functions are used as well. This should be Linux-only, so we don't need the sys/mkdev.h case here for Solaris. Signed-off-by: Mart Raudsepp --- Please