diff options
author | Dylan Baker <[email protected]> | 2018-02-01 16:09:02 -0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-03-20 16:57:23 +0000 |
commit | 8069a71465ece86edeec9076a76d1542875284a0 (patch) | |
tree | c5955f5286e500ca459f9b272c8f4f120b8b993c | |
parent | 0a12090b4ecd6ba4d7f3fdf5b78d4a7462f5fbfd (diff) |
meson: Actually link xvmc target with libxvmc
Unlike vdpau this is required.
Fixes: 22a817af8a89eb3c7 ("meson: build gallium xvmc state tracker")
Signed-off-by: Dylan Baker <[email protected]>
Acked-by: Eric Engestrom <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
(cherry picked from commit 340305576840c2a432202f1ace9279f490d87e59)
-rw-r--r-- | meson.build | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meson.build b/meson.build index 3b8ffc0e23e..e823cde504b 100644 --- a/meson.build +++ b/meson.build @@ -445,9 +445,6 @@ with_gallium_xvmc = _xvmc == 'true' dep_xvmc = [] if with_gallium_xvmc dep_xvmc = dependency('xvmc', version : '>= 1.0.6') - dep_xvmc = declare_dependency( - compile_args : run_command(prog_pkgconfig, ['xvmc', '--cflags']).stdout().split() - ) endif xvmc_drivers_path = get_option('xvmc-libs-path') |