mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +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>
18 lines
417 B
BlitzBasic
18 lines
417 B
BlitzBasic
require libmatchbox.inc
|
|
|
|
PV = "1.7+svnr${SRCREV}"
|
|
PR = "r5"
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \
|
|
file://configure_fixes.patch;patch=1 \
|
|
file://check.m4 \
|
|
file://16bppfixes.patch;patch=1 \
|
|
file://matchbox-start-fix.patch;patch=1"
|
|
|
|
S = "${WORKDIR}/libmatchbox"
|
|
|
|
do_configure_prepend () {
|
|
cp ${WORKDIR}/check.m4 ${S}/
|
|
}
|