mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
x86 target works well. Root cause is libmatchbox use "0"(int) as termination indicator when calling XftFontOpen, which in turn called FcPatternVapBuild(in fontconfig). It try to get the "0" as char* and fetch wrong value, as int and char* has different size on x86-64. This patch forces a NULL pointer as terminator to fix it. [BUGID #234] is fixed by this Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
14 lines
359 B
BlitzBasic
14 lines
359 B
BlitzBasic
require libmatchbox.inc
|
|
|
|
PR = "r8"
|
|
|
|
SRC_URI = "http://projects.o-hand.com/matchbox/sources/${PN}/${PV}/${PN}-${PV}.tar.gz \
|
|
file://16bppfixes.patch;patch=1 \
|
|
file://configure_fixes.patch;patch=1 \
|
|
file://check.m4 \
|
|
file://matchbox-start-fix.patch;patch=1"
|
|
|
|
do_configure_prepend () {
|
|
cp ${WORKDIR}/check.m4 ${S}/
|
|
}
|