summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2022-10-21 19:16:28 +0800
committerMarge Bot <emma+marge@anholt.net>2022-10-22 01:34:53 +0000
commit814682d00c7f016497afe52cd5c6e86f00110d7c (patch)
tree7f9b06d4ef9b758c9c1b841d588b64c213cba891 /meson.build
parent9a7e93f1f6b42ff301dc3031ea0002253e61a6a5 (diff)
downloadmesa-814682d00c7f016497afe52cd5c6e86f00110d7c.tar.gz
meson: with_glx never assigned to 'gallium-xlib', so need add with_glx == 'xlib' for dep_glproto
Fixes: 76791db0882b3715cd7d ("mesa/x11: Remove the swrast-classic-based fake libGL") Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Reviewed-by: Eric Engestrom <eric@igalia.com> Reviewed-by: Adam Jackson <ajax@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19221>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 0cfd5a7dc99..b02e2467cc1 100644
--- a/meson.build
+++ b/meson.build
@@ -2141,7 +2141,7 @@ if with_platform_x11
dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
endif
endif
- if with_glx == 'dri' or with_glx == 'gallium-xlib'
+ if with_glx == 'dri' or with_glx == 'xlib' or with_glx == 'gallium-xlib'
dep_glproto = dependency('glproto', version : '>= 1.4.14')
endif
if with_glx == 'dri'