Mesa (master): meson: Set with_dri from with_gallium when DRI glx is explicitly configured

Jon TURNEY jturney at kemper.freedesktop.org
Wed Jan 17 18:06:33 UTC 2018


Module: Mesa
Branch: master
Commit: 3c35dad1dfd108db082a46ee45da6633e244eb92
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3c35dad1dfd108db082a46ee45da6633e244eb92

Author: Jon Turney <jon.turney at dronecode.org.uk>
Date:   Mon Jan 15 19:39:46 2018 +0000

meson: Set with_dri from with_gallium when DRI glx is explicitly configured

Set with_dri from with_gallium when DRI GLX is explicitly configured, as
well as when DRI GLX is chosen automatically.

Signed-off-by: Jon Turney <jon.turney at dronecode.org.uk>
Reviewed-by: Dylan Baker <dylan at pnwbakers.com>

---

 meson.build | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index ae31cdd657..f3179c3806 100644
--- a/meson.build
+++ b/meson.build
@@ -248,7 +248,6 @@ if with_glx == 'auto'
   elif with_gallium
     # Even when building just gallium drivers the user probably wants dri
     with_glx = 'dri'
-    with_dri = true
   elif with_platform_x11 and with_any_opengl and not with_any_vk
     # The automatic behavior should not be to turn on xlib based glx when
     # building only vulkan drivers
@@ -257,6 +256,11 @@ if with_glx == 'auto'
     with_glx = 'disabled'
   endif
 endif
+if with_glx == 'dri'
+   if with_gallium
+      with_dri = true
+   endif
+endif
 
 if not (with_dri or with_gallium or with_glx == 'xlib' or with_glx == 'gallium-xlib')
   with_gles1 = false




More information about the mesa-commit mailing list