diff options
author | Greg V <[email protected]> | 2018-01-24 21:02:39 +0300 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-01-26 19:53:02 +0000 |
commit | af8c66ba6bc199dc9cf780466ccecabe863ac1d0 (patch) | |
tree | b4b8b6eb10bb967ed8c8fb2ac7cafd35bbfbe776 /src/mesa | |
parent | a807ad2f7c0e43b627d943e91cb6f65197ac0b94 (diff) |
meson: fix missing dependencies
Fixes: 66f97f6640f5 ("meson: build radeonsi")
Reviewed-by: Emil Velikov <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
(cherry picked from commit 7c8cfe2d59bfc0dbf718a74b08b6dceaa84f7242)
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/meson.build b/src/mesa/meson.build index 998953d6411..32eed5231b6 100644 --- a/src/mesa/meson.build +++ b/src/mesa/meson.build @@ -721,7 +721,7 @@ libmesa_gallium = static_library( cpp_args : [cpp_vis_args, cpp_msvc_compat_args], include_directories : [inc_common, include_directories('main')], link_with : [libglsl, libmesa_sse41], - dependencies : idep_nir_headers, + dependencies : [idep_nir_headers, dep_vdpau], build_by_default : false, ) |