From 4e1bacd096d1fe745cb5fcc43fdd4da7700acc0f Mon Sep 17 00:00:00 2001 From: Joe Marcus Clarke Date: Sun, 13 Apr 2003 05:52:45 +0000 Subject: Update to 2.1.93. --- x11-fonts/fontconfig/files/patch-src_fccache.c | 38 -------------------------- 1 file changed, 38 deletions(-) delete mode 100644 x11-fonts/fontconfig/files/patch-src_fccache.c (limited to 'x11-fonts/fontconfig/files/patch-src_fccache.c') diff --git a/x11-fonts/fontconfig/files/patch-src_fccache.c b/x11-fonts/fontconfig/files/patch-src_fccache.c deleted file mode 100644 index e8e8e34c1b4a..000000000000 --- a/x11-fonts/fontconfig/files/patch-src_fccache.c +++ /dev/null @@ -1,38 +0,0 @@ ---- src/fccache.c 2003/03/05 05:51:27 1.17 -+++ src/fccache.c 2003/03/12 22:15:39 1.18 -@@ -309,14 +309,14 @@ - * Verify the saved timestamp for a file - */ - FcBool --FcGlobalCacheCheckTime (FcGlobalCacheInfo *info) -+FcGlobalCacheCheckTime (const FcChar8 *file, FcGlobalCacheInfo *info) - { - struct stat statb; - -- if (stat ((char *) info->file, &statb) < 0) -+ if (stat ((char *) file, &statb) < 0) - { - if (FcDebug () & FC_DBG_CACHE) -- printf (" file missing\n"); -+ printf (" file %s missing\n", file); - return FcFalse; - } - if (statb.st_mtime != info->time) -@@ -549,7 +549,7 @@ - * See if the timestamp recorded in the global cache - * matches the directory time, if not, return False - */ -- if (!FcGlobalCacheCheckTime (&d->info)) -+ if (!FcGlobalCacheCheckTime (d->info.file, &d->info)) - { - if (FcDebug () & FC_DBG_CACHE) - printf ("\tdir cache entry time mismatch\n"); -@@ -633,7 +633,7 @@ - } - } - if (count) -- *count = max; -+ *count = max + 1; - return match; - } - -- cgit v1.2.3