diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-06-05 17:09:04 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-06 09:32:31 +0100 |
commit | 8509c1a7e5acd51aa82c9ffc2811e2532c0e81ce (patch) | |
tree | b1bbf1f2d2c9e856a7849ce27203977c085ac035 | |
parent | 05d751c23a9952ec7f4445ce356f220f0c0b0830 (diff) | |
download | poky-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>
-rw-r--r-- | meta/recipes-graphics/freetype/freetype_2.5.2.bb | 2 |
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" | |||
27 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" | 27 | EXTRA_OEMAKE = "'LIBTOOL=${LIBTOOL}'" |
28 | EXTRA_OEMAKE_class-native = "" | 28 | EXTRA_OEMAKE_class-native = "" |
29 | EXTRA_OECONF = "--without-zlib --without-bzip2 CC_BUILD='${BUILD_CC}'" | 29 | EXTRA_OECONF = "--without-zlib --without-bzip2 CC_BUILD='${BUILD_CC}'" |
30 | TARGET_CPPFLAGS += "-D_FILE_OFFSET_BITS=64" | ||
31 | |||
30 | 32 | ||
31 | PACKAGECONFIG ??= "" | 33 | PACKAGECONFIG ??= "" |
32 | PACKAGECONFIG[pixmap] = "--with-png,--without-png,libpng" | 34 | PACKAGECONFIG[pixmap] = "--with-png,--without-png,libpng" |