]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/blob - meta/recipes-graphics/fontconfig/fontconfig/0001-src-fccache.c-Fix-define-for-HAVE_POSIX_FADVISE.patch
fontconfig: Fix define for HAVE_POSIX_FADVISE
[thirdparty/openembedded/openembedded-core.git] / meta / recipes-graphics / fontconfig / fontconfig / 0001-src-fccache.c-Fix-define-for-HAVE_POSIX_FADVISE.patch
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