mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 11:40:10 +01:00
meson: use va-api version reported by pkg-config
Fixes: 5a785d51a6 ("meson: build gallium va state tracker")
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Acked-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
8eb608df61
commit
424e654cb0
2 changed files with 4 additions and 4 deletions
|
|
@ -546,7 +546,7 @@ with_gallium_va = _va == 'true'
|
||||||
dep_va = []
|
dep_va = []
|
||||||
if with_gallium_va
|
if with_gallium_va
|
||||||
dep_va = dependency('libva', version : '>= 0.38.0')
|
dep_va = dependency('libva', version : '>= 0.38.0')
|
||||||
dep_va = declare_dependency(
|
dep_va_headers = declare_dependency(
|
||||||
compile_args : run_command(prog_pkgconfig, ['libva', '--cflags']).stdout().split()
|
compile_args : run_command(prog_pkgconfig, ['libva', '--cflags']).stdout().split()
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright © 2017 Intel Corporation
|
# Copyright © 2017-2018 Intel Corporation
|
||||||
|
|
||||||
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
# of this software and associated documentation files (the "Software"), to deal
|
# of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
# SOFTWARE.
|
# SOFTWARE.
|
||||||
|
|
||||||
libva_version = ['2', '3', '0']
|
libva_version = dep_va.version().split('.')
|
||||||
|
|
||||||
libva_st = static_library(
|
libva_st = static_library(
|
||||||
'va_st',
|
'va_st',
|
||||||
|
|
@ -35,5 +35,5 @@ libva_st = static_library(
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
include_directories : [inc_common],
|
include_directories : [inc_common],
|
||||||
dependencies : [dep_va, dep_x11_xcb, dep_xcb, dep_xcb_dri2, dep_xcb_dri3],
|
dependencies : [dep_va_headers, dep_x11_xcb, dep_xcb, dep_xcb_dri2, dep_xcb_dri3],
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue