mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 18:49:32 +02:00
The failure is weird and difficult to diagnoze, so disable the introspection for now: qemu-mips64: error while loading shared libraries: .../recipe-sysroot/usr/lib/libgthread-2.0.so.0: ELF file data encoding not little-endian Note that it shows up only for one specific library (gstaudio), and only on mips64. Introspection data for other libraries is generated just fine. (From OE-Core rev: bc6bb09150835c841cf27c88f388ac5796a317a2) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> (cherry picked from commit 4cfe09598c1ec1ffd108acdfd0f4cce1b8688895) Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
862 B
PHP
22 lines
862 B
PHP
SUMMARY = "GStreamer integration library for Clutter"
|
|
HOMEPAGE = "http://www.clutter-project.org/"
|
|
LICENSE = "LGPLv2+"
|
|
|
|
inherit clutter distro_features_check upstream-version-is-even gobject-introspection
|
|
# depends on clutter-1.0 which depends on cogl-1.0
|
|
REQUIRED_DISTRO_FEATURES ?= "opengl"
|
|
|
|
SRC_URI += "file://0001-Install-example-binary-needed-for-core-image-clutter.patch"
|
|
|
|
DEPENDS = "gstreamer1.0-plugins-base gstreamer1.0-plugins-bad clutter-1.0 libgudev"
|
|
RDEPENDS_${PN} += "gstreamer1.0-meta-base"
|
|
PACKAGES =+ "${PN}-examples"
|
|
|
|
FILES_${PN} += "${libdir}/gstreamer-1.0/lib*.so"
|
|
FILES_${PN}-dev += "${libdir}/gstreamer-1.0/*.la"
|
|
FILES_${PN}-examples = "${bindir}/video-player ${bindir}/video-sink"
|
|
|
|
# Needs to be disable due to a dependency on gstreamer-plugins introspection files
|
|
EXTRA_OECONF_append_mips64 = " --disable-introspection "
|
|
|