diff options
Diffstat (limited to 'meta/recipes-graphics/fontconfig')
-rw-r--r-- | meta/recipes-graphics/fontconfig/fontconfig/0001-src-fccache.c-Fix-define-for-HAVE_POSIX_FADVISE.patch | 33 | ||||
-rw-r--r-- | meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb | 1 |
2 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig/0001-src-fccache.c-Fix-define-for-HAVE_POSIX_FADVISE.patch b/meta/recipes-graphics/fontconfig/fontconfig/0001-src-fccache.c-Fix-define-for-HAVE_POSIX_FADVISE.patch new file mode 100644 index 0000000000..07b2d6516f --- /dev/null +++ b/meta/recipes-graphics/fontconfig/fontconfig/0001-src-fccache.c-Fix-define-for-HAVE_POSIX_FADVISE.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From ab9522177a8396a51812fdbebb6387df451a8499 Mon Sep 17 00:00:00 2001 | ||
2 | From: Robert Yang <liezhi.yang@windriver.com> | ||
3 | Date: Mon, 24 Dec 2018 11:03:58 +0800 | ||
4 | Subject: [PATCH] src/fccache.c: Fix define for HAVE_POSIX_FADVISE | ||
5 | |||
6 | Otherwise, there would be build errors in the following 2 cases: | ||
7 | * define HAVE_POSIX_FADVISE | ||
8 | Or: | ||
9 | * undef HAVE_POSIX_FADVISE | ||
10 | |||
11 | Upstream-Status: Pending | ||
12 | |||
13 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | ||
14 | --- | ||
15 | fccache.c | 2 +- | ||
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/src/fccache.c b/src/fccache.c | ||
19 | index 6f3c68a..85cc4b4 100644 | ||
20 | --- a/src/fccache.c | ||
21 | +++ b/src/fccache.c | ||
22 | @@ -700,7 +700,7 @@ FcDirCacheMapFd (FcConfig *config, int fd, struct stat *fd_stat, struct stat *di | ||
23 | { | ||
24 | #if defined(HAVE_MMAP) || defined(__CYGWIN__) | ||
25 | cache = mmap (0, fd_stat->st_size, PROT_READ, MAP_SHARED, fd, 0); | ||
26 | -#if (HAVE_POSIX_FADVISE) && defined(POSIX_FADV_WILLNEED) | ||
27 | +#if defined(HAVE_POSIX_FADVISE) && defined(POSIX_FADV_WILLNEED) | ||
28 | posix_fadvise (fd, 0, fd_stat->st_size, POSIX_FADV_WILLNEED); | ||
29 | #endif | ||
30 | if (cache == MAP_FAILED) | ||
31 | -- | ||
32 | 2.7.4 | ||
33 | |||
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb index 6128d5e2ae..beeae7fb10 100644 --- a/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb +++ b/meta/recipes-graphics/fontconfig/fontconfig_2.12.6.bb | |||
@@ -23,6 +23,7 @@ DEPENDS = "expat freetype zlib gperf-native" | |||
23 | SRC_URI = "http://fontconfig.org/release/fontconfig-${PV}.tar.gz \ | 23 | SRC_URI = "http://fontconfig.org/release/fontconfig-${PV}.tar.gz \ |
24 | file://revert-static-pkgconfig.patch \ | 24 | file://revert-static-pkgconfig.patch \ |
25 | file://0001-src-fcxml.c-avoid-double-free-of-filename.patch \ | 25 | file://0001-src-fcxml.c-avoid-double-free-of-filename.patch \ |
26 | file://0001-src-fccache.c-Fix-define-for-HAVE_POSIX_FADVISE.patch \ | ||
26 | " | 27 | " |
27 | 28 | ||
28 | SRC_URI[md5sum] = "00e748c67fad11e7057a71ed385e8bdb" | 29 | SRC_URI[md5sum] = "00e748c67fad11e7057a71ed385e8bdb" |