diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-06-05 17:09:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-06 09:32:39 +0100 |
commit | 5a49a24d35794fcf9e3895469a67db992a52305e (patch) | |
tree | 4564147c85d326cc3f2cb87805301bfcb0010932 | |
parent | 0b7ea2ada80397649b0da33c5f6231456ce07869 (diff) | |
download | poky-5a49a24d35794fcf9e3895469a67db992a52305e.tar.gz |
fontconfig: 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: 9f363f9e2a56d847efc37dfba38764ae393fbfd6)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/fontconfig/fontconfig_2.11.1.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.11.1.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.11.1.bb index 797b3218b5..4fa58ab380 100644 --- a/meta/recipes-graphics/fontconfig/fontconfig_2.11.1.bb +++ b/meta/recipes-graphics/fontconfig/fontconfig_2.11.1.bb | |||
@@ -38,5 +38,7 @@ DEBIAN_NOAUTONAME_fontconfig-utils = "1" | |||
38 | inherit autotools pkgconfig | 38 | inherit autotools pkgconfig |
39 | 39 | ||
40 | EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts" | 40 | EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts" |
41 | TARGET_CPPFLAGS += "-D_FILE_OFFSET_BITS=64" | ||
42 | |||
41 | 43 | ||
42 | BBCLASSEXTEND = "native" | 44 | BBCLASSEXTEND = "native" |