mirror of
https://git.yoctoproject.org/poky
synced 2026-07-27 19:37:10 +00:00
7c7349efd0
There is a separate libpostproc recipe in meta-oe for use with 9.x and later versions of libav for those few that need libpostproc; however if you just add meta-oe and try to build libpostproc without selecting the libav 9.x version recipe, you'll be building the libpostproc recipe together with libav 0.8.x, which provides its own libpostproc; this leads to confusing errors at packaging time. In order to flag up that these conflict more appropriately, add libpostproc to PROVIDES explicitly so that you at least get a multiple providers error at the start of the build. Fixes [YOCTO #5335]. (From OE-Core master rev: e8f9420fe901675fc1a8d4e41302c2faa4a7dc4a) (From OE-Core rev: 9ec143438d0bffd2ff95c6d74194a53e5fed7f3a) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
682 B
BlitzBasic
21 lines
682 B
BlitzBasic
require libav.inc
|
|
|
|
SRC_URI = "http://libav.org/releases/libav-0.8.8.tar.xz \
|
|
file://0001-configure-enable-pic-for-AArch64.patch"
|
|
|
|
SRC_URI[md5sum] = "34b8f1279a04466386ed67731197efe3"
|
|
SRC_URI[sha256sum] = "e95cf618eb6239177a62c46f15e840c37e02e8308baf94912fc5910ff4aacbf2"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
|
file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://COPYING.LGPLv2.1;md5=e344c8fa836c3a41c4cbd79d7bd3a379 \
|
|
file://COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02"
|
|
|
|
PROVIDES += "libpostproc"
|
|
|
|
EXTRA_OECONF += " \
|
|
--enable-postproc \
|
|
"
|
|
|
|
|