diff options
author | Dylan Baker <[email protected]> | 2018-01-17 10:26:58 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-02-15 10:35:51 -0800 |
commit | 7023b373ec76a2ea25b1bd0a7501276de9007047 (patch) | |
tree | b975ffd2597cae5a512ad77ec96d2fb90a160e25 /src/gallium/targets/va | |
parent | 424e654cb02182c00d1b76c512a8fe17af281e4b (diff) |
meson: link dri3 xcb libs into vlwinsys instead of into each target
This makes the dependencies easier to manage, since each media target
doesn't need to worry about linking to half a dozen libraries.
Fixes: b1b65397d0c4978e3 ("meson: Build gallium auxiliary")
Signed-off-by: Dylan Baker <[email protected]>
Acked-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/targets/va')
-rw-r--r-- | src/gallium/targets/va/meson.build | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/targets/va/meson.build b/src/gallium/targets/va/meson.build index 0ea0cd1c05a..1e453c9f760 100644 --- a/src/gallium/targets/va/meson.build +++ b/src/gallium/targets/va/meson.build @@ -22,7 +22,6 @@ # Static targets are always enabled in autotools (unless you modify # configure.ac) -va_deps = [] va_link_args = [] va_link_depends = [] va_drivers = [] @@ -31,9 +30,6 @@ if with_ld_version_script va_link_args += ['-Wl,--version-script', join_paths(meson.current_source_dir(), 'va.sym')] va_link_depends += files('va.sym') endif -if with_platform_x11 - va_deps += [dep_xcb, dep_x11_xcb, dep_xcb_dri2, dep_xcb_dri3] -endif libva_gallium = shared_library( 'gallium_drv_video', @@ -49,7 +45,7 @@ libva_gallium = shared_library( libpipe_loader_static, libws_null, libwsw, ], dependencies : [ - dep_libdrm, dep_thread, va_deps, driver_r600, driver_radeonsi, driver_nouveau, + dep_libdrm, dep_thread, driver_r600, driver_radeonsi, driver_nouveau, ], link_depends : va_link_depends, install : true, |