summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan A. Suarez Romero <jasuarez@igalia.com>2018-04-27 10:38:09 +0200
committerDylan Baker <dylan@pnwbakers.com>2018-04-30 09:22:13 -0700
commit171753ff5df5a5eba78e38a0c87fbaf323b8bae4 (patch)
treeb921614df410daae717271faaad5a52e81235151
parent7d6ed8d0dda59c8d80e140529c77b2f866288c3b (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 <mesa-stable@lists.freedesktop.org> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> (cherry picked from commit 4d449c94e450c33d7b2b09c1c263322042503893)
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 33c8d0820d..f1fbdcc6c7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -86,7 +86,7 @@ DRI2PROTO_REQUIRED=2.8
GLPROTO_REQUIRED=1.4.14
LIBOMXIL_BELLAGIO_REQUIRED=0.0
LIBOMXIL_TIZONIA_REQUIRED=0.10.0
-LIBVA_REQUIRED=0.38.0
+LIBVA_REQUIRED=0.39.0
VDPAU_REQUIRED=1.1
WAYLAND_REQUIRED=1.11
WAYLAND_PROTOCOLS_REQUIRED=1.8
diff --git a/meson.build b/meson.build
index 9dc6843940..0ecd14cc5c 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()
)