blob: 641bacf1d91c4d7014f2e2d4f96934d98146b192 [file] [log] [blame]
Brad Bishopa34c0302019-09-23 22:34:48 -04001From cee8e48c5344124e5d84307cb0c48ee0c9b3e684 Mon Sep 17 00:00:00 2001
Brad Bishop15ae2502019-06-18 21:44:24 -04002From: Fabio Berton <fabio.berton@ossystems.com.br>
3Date: Wed, 12 Jun 2019 14:15:57 -0300
Brad Bishopa34c0302019-09-23 22:34:48 -04004Subject: [PATCH] meson.build: make TLS GLX optional again
Brad Bishop15ae2502019-06-18 21:44:24 -04005Organization: O.S. Systems Software LTDA.
6
7This was optional with autotools, and needs to be disabled
8when using musl C library, for instance.
9
10Upstream-Status: Pending
11
12Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
13Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Brad Bishopa34c0302019-09-23 22:34:48 -040014Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Brad Bishop15ae2502019-06-18 21:44:24 -040015---
16 meson.build | 4 +++-
17 meson_options.txt | 7 +++++++
18 2 files changed, 10 insertions(+), 1 deletion(-)
19
20diff --git a/meson.build b/meson.build
Brad Bishopa34c0302019-09-23 22:34:48 -040021index b33b430aed4..0e50bb26c0a 100644
Brad Bishop15ae2502019-06-18 21:44:24 -040022--- a/meson.build
23+++ b/meson.build
Brad Bishopa34c0302019-09-23 22:34:48 -040024@@ -369,7 +369,9 @@ if with_egl and not (with_platform_drm or with_platform_surfaceless or with_plat
Brad Bishop15ae2502019-06-18 21:44:24 -040025 endif
26 endif
27
28-pre_args += '-DGLX_USE_TLS'
29+if get_option('glx-tls')
30+ pre_args += '-DGLX_USE_TLS'
31+endif
32 if with_glx != 'disabled'
33 if not (with_platform_x11 and with_any_opengl)
34 error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
35diff --git a/meson_options.txt b/meson_options.txt
36index 1f72faabee8..fcd49efea27 100644
37--- a/meson_options.txt
38+++ b/meson_options.txt
39@@ -339,6 +339,13 @@ option(
40 value : true,
41 description : 'Enable direct rendering in GLX and EGL for DRI',
42 )
43+option(
44+ 'glx-tls',
45+ type : 'boolean',
46+ value : true,
47+ description : 'Enable TLS support in GLX',
48+)
49+
50 option(
51 'I-love-half-baked-turnips',
52 type : 'boolean',