glx/xlib: Build fix
authorAdam Jackson <ajax@redhat.com>
Fri, 11 Dec 2020 21:52:10 +0000 (16:52 -0500)
committerMarge Bot <eric+marge@anholt.net>
Tue, 15 Dec 2020 17:30:56 +0000 (17:30 +0000)
Helgrind support missed a spot.

Fixes: 53f7d539cd9 ("util: Add helgrind support for simple_mtx")
Acked-by: Rob Clark <robclark@freedesktop.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8108>

src/gallium/frontends/glx/xlib/meson.build

index 2ebec60..eaf8451 100644 (file)
@@ -23,5 +23,5 @@ libxlib = static_library(
   files('glx_api.c', 'glx_getproc.c', 'glx_usefont.c', 'xm_api.c', 'xm_st.c'),
   gnu_symbol_visibility : 'hidden',
   include_directories : [inc_include, inc_src, inc_gallium, inc_gallium_aux, inc_mapi, inc_mesa],
-  dependencies : [dep_x11, dep_xext, dep_xcb, dep_glproto],
+  dependencies : [dep_x11, dep_xext, dep_xcb, dep_glproto, idep_mesautil],
 )