diff options
author | Juan A. Suarez Romero <[email protected]> | 2018-04-27 10:38:09 +0200 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-04-30 09:22:13 -0700 |
commit | 171753ff5df5a5eba78e38a0c87fbaf323b8bae4 (patch) | |
tree | b921614df410daae717271faaad5a52e81235151 /meson.build | |
parent | 7d6ed8d0dda59c8d80e140529c77b2f866288c3b (diff) |
autotools, meson: bump up required VA version
Due using a new VP9 config we use, required VA API 0.39
Fixes: 413c5ca3727 ("travis: update libva required version")
CC: 18.1 <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
(cherry picked from commit 4d449c94e450c33d7b2b09c1c263322042503893)
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 9dc6843940b..0ecd14cc5c6 100644 --- a/meson.build +++ b/meson.build @@ -584,7 +584,7 @@ endif with_gallium_va = _va == 'true' dep_va = null_dep if with_gallium_va - dep_va = dependency('libva', version : '>= 0.38.0') + dep_va = dependency('libva', version : '>= 0.39.0') dep_va_headers = declare_dependency( compile_args : run_command(prog_pkgconfig, ['libva', '--cflags']).stdout().split() ) |