Re: [Mesa-dev] [Intel-gfx] gitlab.fd.o financial situation and impact on services

2020-03-02 Thread Eric Anholt
On Fri, Feb 28, 2020 at 12:48 AM Dave Airlie wrote: > > On Fri, 28 Feb 2020 at 18:18, Daniel Stone wrote: > > > > On Fri, 28 Feb 2020 at 03:38, Dave Airlie wrote: > > > b) we probably need to take a large step back here. > > > > > > Look at this from a sponsor POV, why would I give X.org/fd.o >

Re: Split render/display SoCs, Mesa's renderonly, and Wayland dmabuf hints

2021-04-20 Thread Eric Anholt
On Tue, Apr 20, 2021 at 3:18 AM Daniel Stone wrote: > > Hi, > > On Mon, 19 Apr 2021 at 13:06, Simon Ser wrote: >> >> I'm working on a Wayland extension [1] that, among other things, allows >> compositors to advertise the preferred device to be used by Wayland >> clients. >> >> In general, composi

[PATCH 1/2] configure: Fix build on debian by avoiding bashisms in the test command.

2012-02-09 Thread Eric Anholt
--- configure.ac | 42 +- 1 files changed, 21 insertions(+), 21 deletions(-) diff --git a/configure.ac b/configure.ac index 02f4040..7596799 100644 --- a/configure.ac +++ b/configure.ac @@ -33,13 +33,13 @@ AM_CONDITIONAL(HAVE_RSVG_CONVERT, test -n "$RSVG_

[PATCH 2/2] automake: Don't fail the build if we can't setuid.

2012-02-09 Thread Eric Anholt
The configure default is to setuid root the weston compositor. However, if installing as non-root (say, to your prefix in homedir), the install fails anyway, even if you didn't need setuid to run weston in your configuration. --- clients/window.c |2 +- src/Makefile.am |4 ++-- 2 files ch