From: Saul Wold Date: Fri, 6 Jun 2014 00:09:05 +0000 (-0700) Subject: fontconfig: enable 64 bit file support X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ca220681f1ba0fedeab68e96df58f36c4fbc7473;p=openembedded-core.git 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] Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.11.0.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.11.0.bb index 48385a369a..7e8708f873 100644 --- a/meta/recipes-graphics/fontconfig/fontconfig_2.11.0.bb +++ b/meta/recipes-graphics/fontconfig/fontconfig_2.11.0.bb @@ -38,5 +38,7 @@ DEBIAN_NOAUTONAME_fontconfig-utils = "1" inherit autotools pkgconfig EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts" +TARGET_CPPFLAGS += "-D_FILE_OFFSET_BITS=64" + BBCLASSEXTEND = "native"