mirror of
https://git.yoctoproject.org/poky
synced 2026-03-26 13:02:22 +01:00
Changelog: =========== * docs: fix references and descriptions snf focyhrn mstkup * ci: add build docs test * win: change default driver search path to bindir * win: rely on compiler to define link names * add: Add mono_chrome to VAEncSequenceParameterBufferAV1 * add: Enable support for license acquisition of multiple protected playbacks * fix: year for version 2.18.0 in NEWS * fix: use secure_getenv instead of getenv * trace: Improve and add VA trace log for AV1 encode * trace: Unify va log message, replace va_TracePrint with va_TraceMsg. (From OE-Core rev: 8592c1c71b6b89ccb7cecba1f242ca7f3bfe6b00) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
457 B
BlitzBasic
16 lines
457 B
BlitzBasic
require libva.inc
|
|
|
|
PACKAGECONFIG ??= " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'glx', '', d)} \
|
|
${@bb.utils.filter('DISTRO_FEATURES', 'x11 wayland', d)} \
|
|
"
|
|
|
|
PACKAGES =+ "${PN}-x11 ${PN}-glx ${PN}-wayland"
|
|
|
|
RDEPENDS:${PN}-x11 =+ "${PN}"
|
|
RDEPENDS:${PN}-glx =+ "${PN}-x11"
|
|
|
|
FILES:${PN}-x11 =+ "${libdir}/libva-x11*${SOLIBS}"
|
|
FILES:${PN}-glx =+ "${libdir}/libva-glx*${SOLIBS}"
|
|
FILES:${PN}-wayland =+ "${libdir}/libva-wayland*${SOLIBS}"
|