From 9709ae4cc66e3097ba86e4aa51ddacd94aca0533 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Tue, 25 Jul 2023 16:43:51 +0200 Subject: [PATCH] meson: report with_glvnd in summary GLVND *really* kinda belongs in *both* GLX and EGL, but it feels silly to repeat the same setting. So let's just report it under the GL section, as that's generic enough to apply to both of other sections. Reviewed-by: Adam Jackson Part-of: --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 532d9d908e6..1c155e8d334 100644 --- a/meson.build +++ b/meson.build @@ -2165,6 +2165,7 @@ summary( 'ES1': with_gles1, 'ES2': with_gles2, 'Shared glapi': with_shared_glapi, + 'GLVND': with_glvnd, }, section: 'OpenGL', bool_yn: true )