summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2014-06-05 17:09:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-06 09:32:31 +0100
commit8509c1a7e5acd51aa82c9ffc2811e2532c0e81ce (patch)
treeb1bbf1f2d2c9e856a7849ce27203977c085ac035 /meta
parent05d751c23a9952ec7f4445ce356f220f0c0b0830 (diff)
downloadpoky-8509c1a7e5acd51aa82c9ffc2811e2532c0e81ce.tar.gz
freetype: enable 64 bit file support
When running 32bit code on a large filessytem with 64bit inodes, the fontcache was not being created correctly because an EOVERFLOW was being returned from the fstat when reading the 64 inode on a 32bit system. The fontcache is created at rootfs time on the host system via qemu. [YOCTO #6338] (From OE-Core rev: bf6fcfa17d73171623a4d27089c32031705c2591) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-graphics/freetype/freetype_2.5.2.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-graphics/freetype/freetype_2.5.2.bb b/meta/recipes-graphics/freetype/freetype_2.5.2.bb
index fd8a9e184e..7119990d14 100644
--- a/meta/recipes-graphics/freetype/freetype_2.5.2.bb
+++ b/meta/recipes-graphics/freetype/freetype_2.5.2.bb
@@ -27,6 +27,8 @@ LIBTOOL = "${S}/builds/unix/${HOST_SYS}-libtool"
27EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" 27EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'"
28EXTRA_OEMAKE_class-native = "" 28EXTRA_OEMAKE_class-native = ""
29EXTRA_OECONF = "--without-zlib --without-bzip2 CC_BUILD='${BUILD_CC}'" 29EXTRA_OECONF = "--without-zlib --without-bzip2 CC_BUILD='${BUILD_CC}'"
30TARGET_CPPFLAGS += "-D_FILE_OFFSET_BITS=64"
31
30 32
31PACKAGECONFIG ??= "" 33PACKAGECONFIG ??= ""
32PACKAGECONFIG[pixmap] = "--with-png,--without-png,libpng" 34PACKAGECONFIG[pixmap] = "--with-png,--without-png,libpng"