* Fix misleading-indentation warning * Deal with glob string properly * Allow comma as a delimiter in postscriptname and ignore it on matching * Refactor exclusive language logic into separate file * Use proper postscriptname for named instance if any * Remove redundant leaf assignment in fcfreetype.c * Ensure lock/unlock symmetry * Ensure config is locked during retry in FcConfigReference * Unlock on allocation failure in FcCacheInsert * Fix FcSerialize undefined behavior with null pointer usage * Fix undefined behavior issue on qsort call * Add cop.orth for Coptic language * Add got.orth for Gothic language * Fix a memory leak in fc-list/fc-query/fc-scan * mark _FcPatternIter as may_alias * Accept integer for pixelsize * Improve hinting detection for fonthashint object * Add FcConfigSetFontSetFilter * Fix some code found by SAST * Set FcTypeVoid if no valid types to convert * Fix a memory leak in _get_real_paths_from_prefix * Fix double slashes in path * More information when no writable cache directories * Fix test case for reproducible builds * Fix invalid escape character \s * Sort out bitmap related config files * Clean up .uuid files with fc-cache -f too - add fontconfig-autoconf269.patch to start leap build OBS-URL: https://build.opensuse.org/package/show/M17N/fontconfig?expand=0&rev=178
23 lines
929 B
Diff
23 lines
929 B
Diff
Index: fontconfig-2.16.0/configure.ac
|
|
===================================================================
|
|
--- fontconfig-2.16.0.orig/configure.ac
|
|
+++ fontconfig-2.16.0/configure.ac
|
|
@@ -23,7 +23,7 @@ dnl PERFORMANCE OF THIS SOFTWARE.
|
|
dnl
|
|
dnl Process this file with autoconf to create configure.
|
|
|
|
-AC_PREREQ([2.71])
|
|
+AC_PREREQ([2.69])
|
|
|
|
dnl ==========================================================================
|
|
dnl Versioning
|
|
@@ -163,7 +163,7 @@ dnl ====================================
|
|
AC_HEADER_DIRENT
|
|
# Autoupdate added the next two lines to ensure that your configure
|
|
# script's behavior did not change. They are probably safe to remove.
|
|
-AC_CHECK_INCLUDES_DEFAULT
|
|
+m4_version_prereq([2.70], [AC_CHECK_INCLUDES_DEFAULT], [AC_HEADER_STDC])
|
|
AC_PROG_EGREP
|
|
|
|
AC_CHECK_HEADERS([dirent.h fcntl.h stdlib.h string.h unistd.h sys/statvfs.h sys/vfs.h sys/statfs.h sys/param.h sys/mount.h])
|