summaryrefslogtreecommitdiff
path: root/src/glx
diff options
context:
space:
mode:
authorduncan.hopkins <duncan.hopkins@foundry.com>2023-10-17 09:34:31 +0100
committerMarge Bot <emma+marge@anholt.net>2023-11-02 15:08:17 +0000
commitc8b64452c076c1768beb23280de25faf2bcbe2c8 (patch)
treee9e6af11c2bcd3ffa7d43fcd86aa84f970761daa /src/glx
parent96d55d784cb4f047a4b58cd08330f42208641ea7 (diff)
dri: added build dependencies for systems using non-standard prefixed X11 libs.
To get MacOS to build, some extra dependencies need to be added to a couple of build targets. This mainly shows up when not installing the dependencies in the default prefix locations. On MacOS, this happens when using a custom build of brew to install the dependencies to 'odd' locations. Reviewed-by: Adam Jackson <ajax@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25992>
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 7ec3e3e0d88..1a5e9833956 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_xxf86vm, dep_xshmfence
+ dep_libdrm, dep_dri2proto, dep_glproto, dep_x11, dep_xext, dep_glvnd, dep_xxf86vm, dep_xshmfence
],
)