diff options
author | Dylan Baker <[email protected]> | 2017-09-29 17:53:01 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-10-16 16:32:43 -0700 |
commit | 50c28dfa813e82492dc1e6fcd7b2ec49d501cefc (patch) | |
tree | 4f58e2dd9a986cabf564c9cb2f3c97d0c0df114e /src/loader | |
parent | b1b65397d0c4978e36a84c0a1c98a4bd6cb9588e (diff) |
meson: split and simplify dependencies
Rather than group dependencies in complex groups, use a flatter
structure with split dependencies to avoid checking for the same
dependencies twice.
v2: - Fix building vulkan drivers without gallium or dri drivers
v3: - Drop TODO comment that is done
- Fix typo in commit message
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/loader')
-rw-r--r-- | src/loader/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/loader/meson.build b/src/loader/meson.build index 425620372aa..2f97cdc83bf 100644 --- a/src/loader/meson.build +++ b/src/loader/meson.build @@ -26,7 +26,10 @@ if with_platform_x11 and with_dri3 ['loader_dri3_helper.c', 'loader_dri3_helper.h'], c_args : c_vis_args, include_directories : inc_include, - dependencies : [dep_xcb_dri3, dep_libdrm], + dependencies : [ + dep_xshmfence, dep_xcb_present, dep_xcb_dri3, dep_xcb_sync, dep_x11_xcb, + dep_xext, dep_xdamage, dep_xcb_glx, dep_libdrm, + ], build_by_default : false, ) else |