Module: Mesa Branch: main Commit: 9709ae4cc66e3097ba86e4aa51ddacd94aca0533 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9709ae4cc66e3097ba86e4aa51ddacd94aca0533
Author: Erik Faye-Lund <[email protected]> Date: Tue Jul 25 16:43:51 2023 +0200 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 <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24317> --- 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 )
