Re: [Mesa-dev] [PATCH] meson: add toggle for TLS support in GLX

2019-01-29 Thread Patrick Steinhardt
On Mon, Jan 28, 2019 at 02:09:18PM -0800, Dylan Baker wrote: > Quoting Adam Jackson (2019-01-28 09:00:13) > > On Sat, 2019-01-26 at 13:56 +0100, Patrick Steinhardt wrote: > > > > > Unfortunately, I'm not aware of any easy way to do this. The > > > prob

Re: [Mesa-dev] [PATCH] meson: add toggle for TLS support in GLX

2019-01-28 Thread Patrick Steinhardt
On Fri, Jan 25, 2019 at 01:16:30PM -0800, Eric Anholt wrote: > Patrick Steinhardt writes: > > > The musl libc library does not have any support for the > > "initial-exec" TLS model and is unlikely to ever implement it. > > Thus, TLS support in GLX

[Mesa-dev] [PATCH] meson: add toggle for TLS support in GLX

2019-01-25 Thread Patrick Steinhardt
autoconf build system by passing `--disable-glx-tls`, meson does not yet have such an option. Add a new toggle "glx-tls" that defaults to `true` to gain parity with autoconf. If disabled, `GLX_USE_TLS` will not be defined and thus mesa will be built without TLS support. Signed-o