summaryrefslogtreecommitdiff
path: root/src/glx
diff options
context:
space:
mode:
authorjheaff1 <jheaff1@outlook.com>2022-07-17 23:04:23 +0100
committerMarge Bot <emma+marge@anholt.net>2022-07-18 21:12:26 +0000
commit2e71e231885f6d5540d4aeb8dd1f232d4fb9ee68 (patch)
tree7351137653a4a7194046d58660f8f93891b94c6a /src/glx
parent48491386fff86e274140b81e03175eae06c6a937 (diff)
build(glx): Fix build by adding missing deps
dri3_glx.c includes xshmfence and glxcmds.c includes xf86vm, neither of which are listed as dependencies of the glx lib in the meson.build file. Consequently, those files would fail to compile on machines that did not have xshmfence and xf86vm installed globally. This commit rectifies the issue by adding the missing dependencies Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17585>
Diffstat (limited to 'src/glx')
-rw-r--r--src/glx/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/meson.build b/src/glx/meson.build
index 8f642d5e14b..20f04742894 100644
--- a/src/glx/meson.build
+++ b/src/glx/meson.build
@@ -136,7 +136,7 @@ libglx = static_library(
],
dependencies : [
idep_mesautil, idep_xmlconfig,
- dep_libdrm, dep_dri2proto, dep_glproto, dep_x11, dep_glvnd,
+ dep_libdrm, dep_dri2proto, dep_glproto, dep_x11, dep_glvnd, dep_xxf86vm, dep_xshmfence
],
)