diff options
author | Eric Engestrom <[email protected]> | 2019-07-22 15:25:28 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-08-03 00:08:37 +0000 |
commit | 9a07606b84ec124232f3daddb15e169cc395bf91 (patch) | |
tree | 4714bd7a3dda84f7f6af22bf802dd6f9f067aac1 /src/glx | |
parent | 178811d8f6a2a449069830b38d3feae0d34f962a (diff) |
meson: replace last uses of libxmlconfig with idep_xmlconfig
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Eric Anholt <[email protected]>
Tested-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/meson.build | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/glx/meson.build b/src/glx/meson.build index 3079959145b..85f2697f08d 100644 --- a/src/glx/meson.build +++ b/src/glx/meson.build @@ -145,10 +145,13 @@ libglx = static_library( '-DGL_LIB_NAME="lib@[email protected].@1@"'.format(gl_lib_name, gl_lib_version.split('.')[0]), ], link_with : [ - libloader, libloader_dri3_helper, libxmlconfig, + libloader, libloader_dri3_helper, extra_libs_libglx, ], - dependencies : [idep_mesautil, dep_libdrm, dep_dri2proto, dep_glproto, dep_x11, dep_glvnd], + dependencies : [ + idep_mesautil, idep_xmlconfig, + dep_libdrm, dep_dri2proto, dep_glproto, dep_x11, dep_glvnd, + ], ) libgl = shared_library( |