mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
GCC will define __ARM_ARCH_4T__ when building with "-march=armv4t" so we can check this to turn off the use of 'clz' instructions, which otherwise would cause compile errors like "selected processor does not support ARM mode `clz r3,r0'". (From OE-Core rev: 6859e3fc34269620146d26eeecc9b93c3a9d7055) Signed-off-by: Wolfgang Denk <wd@denx.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
838 B
BlitzBasic
29 lines
838 B
BlitzBasic
require recipes-graphics/clutter/clutter.inc
|
|
|
|
PR = "r3"
|
|
|
|
# Internal json-glib was removed in Clutter 1.5.2
|
|
STDDEPENDS += "json-glib"
|
|
|
|
PACKAGES =+ "${PN}-examples"
|
|
FILES_${PN}-examples = "${bindir}/test-* ${pkgdatadir}/redhand.png"
|
|
|
|
SRC_URI = "http://source.clutter-project.org/sources/clutter/1.6/clutter-${PV}.tar.bz2 \
|
|
file://enable_tests-1.4.patch \
|
|
file://update_gettext_macro_version.patch \
|
|
file://fix_build_for_armv4t.patch \
|
|
"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
|
|
S = "${WORKDIR}/clutter-${PV}"
|
|
|
|
BASE_CONF += "--disable-introspection"
|
|
|
|
do_configure_prepend () {
|
|
# Disable DOLT
|
|
sed -i -e 's/^DOLT//' ${S}/configure.ac
|
|
}
|
|
|
|
SRC_URI[md5sum] = "1da9f983115f9bd28b0be8176e53fe36"
|
|
SRC_URI[sha256sum] = "0564e57ca8eb24e76014627c0bb28a80a6c01b620ba14bc4198365562549576d"
|