Update to fontconfig 2.14.2

This commit is contained in:
matthieu
2023-07-03 13:18:52 +00:00
parent 765d57c14f
commit 48b14d4e87
253 changed files with 4505 additions and 3906 deletions

View File

@@ -1,12 +1,56 @@
Fontconfig
Font configuration and customization library
Version 2.14
2022-03-31
Version 2.14.1
2022-10-21
Check INSTALL for compilation and installation instructions.
Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new.
2.14.1
Akira TAGOH (6):
Use the latest stable release image for CI for mingw
Real fix of 91114d18c
Fix test cases for wrong use of remap-dir
Add back sort command
Add config files to enable/disable antialias
Enable 10-sub-pixel-rgb.conf by default
Alan Coopersmith (1):
Bump the cache version to 8 in doc/fontconfig-user.sgml
Jeremy Huddleston Sequoia (3):
meson: Fix linking libexpat on darwin
meson: Use fc_templatedir and fc_baseconfigdir are used when installing configs
meson: Use fc_configdir where appropriate during build
NorwayFun (4):
add Georgian
add Georgian
po: add Georgian translation
po: Add Georgian translation
Sam James (1):
configure.ac: allow disabling docbook
Taylor R Campbell (1):
Avoid misuse of ctype(3)
Tim-Philipp Müller (7):
meson: add 'default-hinting' option
meson: add 'default-fonts-dirs' option
meson: add 'additional-fonts-dirs' option
meson: add 'cache-dir' option
meson: add 'template-dir', 'baseconfig-dir', 'config-dir', and 'xml-dir' options
ci: update windows image to a 2022-server based one
ci: update macOS image
Xavier Claessens (3):
meson: Do not run fc-cache when installing into a DESTDIR
meson: Fix configuration warnings
link_confs.py: Fix prepending DESTDIR to absolute path
2.14
Alan Coopersmith (1):
@@ -1661,7 +1705,7 @@ Behdad Esfahbod (119):
[doc] Add const decorator for FcPatternDuplicate()
Add FcPatternFilter() (#13016)
[doc] Document that a zero rescanInterval disables automatic checks (#17103)
Get rid of $Id: README,v 1.6 2022/10/16 15:41:25 matthieu Exp $ tags
Get rid of $Id: README,v 1.7 2023/07/03 13:18:52 matthieu Exp $ tags
[doc] Fix signature of FcConfigHome()
Fix docs re 'orig' argument of FcPatternBuild and family
Update sr.orth to actul subset of Cyrillic used by Serbian (#17208)

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
<description>Disable antialiasing</description>
<match target="pattern">
<edit name="antialias" mode="append"><bool>false</bool></edit>
</match>
</fontconfig>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
<description>Enable antialiasing</description>
<match target="pattern">
<edit name="antialias" mode="append"><bool>true</bool></edit>
</match>
</fontconfig>

View File

@@ -32,6 +32,8 @@ DOC_FILES = $(DOC_SOURCES:.in=)
CONF_LINKS = \
10-hinting-$(PREFERRED_HINTING).conf \
10-scale-bitmap-fonts.conf \
10-yes-antialias.conf \
10-sub-pixel-rgb.conf \
11-lcdfilter-default.conf \
20-unhint-small-vera.conf \
30-metric-aliases.conf \
@@ -65,6 +67,7 @@ template_DATA = \
10-hinting-medium.conf \
10-hinting-none.conf \
10-hinting-slight.conf \
10-no-antialias.conf \
10-no-sub-pixel.conf \
10-scale-bitmap-fonts.conf \
10-sub-pixel-bgr.conf \
@@ -72,6 +75,7 @@ template_DATA = \
10-sub-pixel-vbgr.conf \
10-sub-pixel-vrgb.conf \
10-unhinted.conf \
10-yes-antialias.conf \
11-lcdfilter-default.conf \
11-lcdfilter-legacy.conf \
11-lcdfilter-light.conf \

View File

@@ -4,6 +4,7 @@ import os
import sys
import argparse
import platform
from pathlib import PurePath
if __name__=='__main__':
parser = argparse.ArgumentParser()
@@ -15,7 +16,8 @@ if __name__=='__main__':
if os.path.isabs(args.confpath):
destdir = os.environ.get('DESTDIR')
if destdir:
confpath = os.path.join(destdir, args.confpath[1:])
# c:\destdir + c:\prefix must produce c:\destdir\prefix
confpath = str(PurePath(destdir, *PurePath(args.confpath).parts[1:]))
else:
confpath = args.confpath
else:

View File

@@ -6,6 +6,7 @@ conf_files = [
'10-hinting-medium.conf',
'10-hinting-none.conf',
'10-hinting-slight.conf',
'10-no-antialias.conf',
'10-no-sub-pixel.conf',
'10-scale-bitmap-fonts.conf',
'10-sub-pixel-bgr.conf',
@@ -13,6 +14,7 @@ conf_files = [
'10-sub-pixel-vbgr.conf',
'10-sub-pixel-vrgb.conf',
'10-unhinted.conf',
'10-yes-antialias.conf',
'11-lcdfilter-default.conf',
'11-lcdfilter-legacy.conf',
'11-lcdfilter-light.conf',
@@ -38,11 +40,13 @@ conf_files = [
'90-synthetic.conf',
]
preferred_hinting = 'slight'
preferred_hinting = get_option('default-hinting')
conf_links = [
'10-hinting-@0@.conf'.format(preferred_hinting),
'10-scale-bitmap-fonts.conf',
'10-yes-antialias.conf',
'10-sub-pixel-rgb.conf',
'11-lcdfilter-default.conf',
'20-unhint-small-vera.conf',
'30-metric-aliases.conf',
@@ -62,11 +66,10 @@ conf_links = [
'90-synthetic.conf',
]
install_data(conf_files, install_dir: join_paths(get_option('datadir'), 'fontconfig/conf.avail'))
install_data(conf_files, install_dir: fc_templatedir)
meson.add_install_script('link_confs.py',
join_paths(get_option('prefix'), get_option('datadir'), 'fontconfig/conf.avail'),
join_paths(get_option('sysconfdir'), 'fonts', 'conf.d'),
meson.add_install_script('link_confs.py', fc_templatedir,
fc_configdir,
conf_links,
)
@@ -82,7 +85,7 @@ endforeach
custom_target('35-lang-normalize.conf',
output: '35-lang-normalize.conf',
command: [find_program('write-35-lang-normalize-conf.py'), ','.join(orths), '@OUTPUT@'],
install_dir: join_paths(get_option('datadir'), 'fontconfig/conf.avail'),
install_dir: fc_templatedir,
install: true)
# README
@@ -91,5 +94,5 @@ readme_cdata.set('TEMPLATEDIR', fc_templatedir)
configure_file(output: 'README',
input: 'README.in',
configuration: readme_cdata,
install_dir: join_paths(get_option('sysconfdir'), 'fonts', 'conf.d'),
install_dir: fc_configdir,
install: true)

View File

@@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library
dnl version. This same version number must appear in fontconfig/fontconfig.h
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
dnl not possible to extract the version number here from fontconfig.h
AC_INIT([fontconfig], [2.14.0], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
AC_INIT([fontconfig], [2.14.1], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-xz])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
@@ -736,7 +736,13 @@ dnl ===========================================================================
# Let people not build/install docs if they don't have docbook
#
AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
AC_ARG_ENABLE(docbook,
[AS_HELP_STRING([--disable-docbook],
[Disable building docs with docbook2html (default: no)])],,)
if test x$enable_docbook != xno; then
AC_CHECK_PROG(HASDOCBOOK, docbook2html, yes, no)
fi
AM_CONDITIONAL(USEDOCBOOK, test "x$HASDOCBOOK" = xyes)

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicCreate" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicCreate" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicCreate \- create an FcAtomic object
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicDeleteNew" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicDeleteNew" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicDeleteNew \- delete new file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicDestroy" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicDestroy" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicDestroy \- destroy an FcAtomic object
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicLock" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicLock" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicLock \- lock a file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicNewFile" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicNewFile" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicNewFile \- return new temporary file name
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicOrigFile" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicOrigFile" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicOrigFile \- return original file name
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicReplaceOrig" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicReplaceOrig" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicReplaceOrig \- replace original with new
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcAtomicUnlock" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcAtomicUnlock" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcAtomicUnlock \- unlock a file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcBlanksAdd" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcBlanksAdd" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcBlanksAdd \- Add a character to an FcBlanks
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcBlanksCreate" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcBlanksCreate" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcBlanksCreate \- Create an FcBlanks
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcBlanksDestroy" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcBlanksDestroy" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcBlanksDestroy \- Destroy and FcBlanks
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcBlanksIsMember" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcBlanksIsMember" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcBlanksIsMember \- Query membership in an FcBlanks
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCacheCopySet" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCacheCopySet" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCacheCopySet \- Returns a copy of the fontset from cache
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCacheCreateTagFile" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCacheCreateTagFile" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCacheCreateTagFile \- Create CACHEDIR.TAG at cache directory.
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCacheDir" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCacheDir" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCacheDir \- Return directory of cache
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCacheNumFont" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCacheNumFont" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCacheNumFont \- Returns the number of fonts in cache.
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCacheNumSubdir" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCacheNumSubdir" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCacheNumSubdir \- Return the number of subdirectories in cache.
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCacheSubdir" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCacheSubdir" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCacheSubdir \- Return the i'th subdirectory.
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetAddChar" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetAddChar" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetAddChar \- Add a character to a charset
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetCopy" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetCopy" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetCopy \- Copy a charset
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetCount" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetCount" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetCount \- Count entries in a charset
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetCoverage" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetCoverage" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetCoverage \- DEPRECATED return coverage for a Unicode page
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetCreate" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetCreate" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetCreate \- Create an empty character set
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetDelChar" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetDelChar" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetDelChar \- Add a character to a charset
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetDestroy" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetDestroy" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetDestroy \- Destroy a character set
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetEqual" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetEqual" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetEqual \- Compare two charsets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetFirstPage" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetFirstPage" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetFirstPage \- Start enumerating charset contents
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetHasChar" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetHasChar" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetHasChar \- Check a charset for a char
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetIntersect" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetIntersect" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetIntersect \- Intersect charsets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetIntersectCount" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetIntersectCount" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetIntersectCount \- Intersect and count charsets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetIsSubset" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetIsSubset" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetIsSubset \- Test for charset inclusion
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetMerge" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetMerge" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetMerge \- Merge charsets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetNew" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetNew" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetNew \- DEPRECATED alias for FcCharSetCreate
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetNextPage" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetNextPage" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetNextPage \- Continue enumerating charset contents
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetSubtract" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetSubtract" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetSubtract \- Subtract charsets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetSubtractCount" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetSubtractCount" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetSubtractCount \- Subtract and count charsets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcCharSetUnion" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcCharSetUnion" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcCharSetUnion \- Add charsets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigAppFontAddDir" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigAppFontAddDir" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigAppFontAddDir \- Add fonts from directory to font database
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigAppFontAddFile" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigAppFontAddFile" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigAppFontAddFile \- Add font file to font database
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigAppFontClear" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigAppFontClear" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigAppFontClear \- Remove all app fonts from font database
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigBuildFonts" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigBuildFonts" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigBuildFonts \- Build font database
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigCreate" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigCreate" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigCreate \- Create a configuration
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigDestroy" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigDestroy" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigDestroy \- Destroy a configuration
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigEnableHome" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigEnableHome" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigEnableHome \- controls use of the home directory.
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigFileInfoIterGet" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigFileInfoIterGet" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigFileInfoIterGet \- Obtain the configuration file information
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigFileInfoIterInit" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigFileInfoIterInit" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigFileInfoIterInit \- Initialize the iterator
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigFileInfoIterNext" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigFileInfoIterNext" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigFileInfoIterNext \- Set the iterator to point to the next list
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigFilename" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigFilename" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigFilename \- Find a config file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetBlanks" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetBlanks" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetBlanks \- Get config blanks
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetCache" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetCache" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetCache \- DEPRECATED used to return per-user cache filename
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetCacheDirs" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetCacheDirs" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetCacheDirs \- return the list of directories searched for cache files
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetConfigDirs" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetConfigDirs" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetConfigDirs \- Get config directories
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetConfigFiles" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetConfigFiles" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetConfigFiles \- Get config files
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetCurrent" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetCurrent" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetCurrent \- Return current configuration
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetFilename" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetFilename" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetFilename \- Find a config file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetFontDirs" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetFontDirs" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetFontDirs \- Get font directories
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetFonts" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetFonts" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetFonts \- Get config font set
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetRescanInterval" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetRescanInterval" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetRescanInterval \- Get config rescan interval
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigGetSysRoot" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigGetSysRoot" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigGetSysRoot \- Obtain the system root directory
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigHome" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigHome" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigHome \- return the current home directory.
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigParseAndLoad" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigParseAndLoad" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigParseAndLoad \- load a configuration file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigParseAndLoadFromMemory" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigParseAndLoadFromMemory" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigParseAndLoadFromMemory \- load a configuration from memory
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigReference" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigReference" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigReference \- Increment config reference count
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigSetCurrent" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigSetCurrent" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigSetCurrent \- Set configuration as default
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigSetRescanInterval" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigSetRescanInterval" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigSetRescanInterval \- Set config rescan interval
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigSetSysRoot" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigSetSysRoot" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigSetSysRoot \- Set the system root directory
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigSubstitute" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigSubstitute" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigSubstitute \- Execute substitutions
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigSubstituteWithPat" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigSubstituteWithPat" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigSubstituteWithPat \- Execute substitutions
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcConfigUptoDate" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcConfigUptoDate" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcConfigUptoDate \- Check timestamps on config files
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDefaultSubstitute" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDefaultSubstitute" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDefaultSubstitute \- Perform default substitutions in a pattern
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheClean" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheClean" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheClean \- Clean up a cache directory
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheCreateUUID" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheCreateUUID" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheCreateUUID \- Create .uuid file at a directory
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheDeleteUUID" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheDeleteUUID" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheDeleteUUID \- Delete .uuid file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheLoad" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheLoad" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheLoad \- load a directory cache
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheLoadFile" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheLoadFile" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheLoadFile \- load a cache file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheRead" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheRead" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheRead \- read or construct a directory cache
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheRescan" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheRescan" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheRescan \- Re-scan a directory cache
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheUnlink" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheUnlink" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheUnlink \- Remove all caches related to dir
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheUnload" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheUnload" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheUnload \- unload a cache file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirCacheValid" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirCacheValid" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirCacheValid \- check directory cache
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirSave" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirSave" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirSave \- DEPRECATED: formerly used to save a directory cache
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcDirScan" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcDirScan" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcDirScan \- scan a font directory without caching it
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFileIsDir" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFileIsDir" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFileIsDir \- check whether a file is a directory
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFileScan" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFileScan" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFileScan \- scan a font file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFini" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFini" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFini \- finalize fontconfig library
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontList" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontList" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontList \- List fonts
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontMatch" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontMatch" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontMatch \- Return best font
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontRenderPrepare" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontRenderPrepare" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontRenderPrepare \- Prepare pattern for loading font file
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontSetAdd" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontSetAdd" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontSetAdd \- Add to a font set
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontSetCreate" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontSetCreate" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontSetCreate \- Create a font set
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontSetDestroy" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontSetDestroy" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontSetDestroy \- Destroy a font set
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontSetList" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontSetList" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontSetList \- List fonts from a set of font sets
.SH SYNOPSIS

View File

@@ -1,5 +1,5 @@
.\" auto-generated by docbook2man-spec from docbook-utils package
.TH "FcFontSetMatch" "3" "31 3月 2022" "Fontconfig 2.14.0" ""
.TH "FcFontSetMatch" "3" "21 10月 2022" "Fontconfig 2.14.1" ""
.SH NAME
FcFontSetMatch \- Return the best font from a set of font sets
.SH SYNOPSIS

Some files were not shown because too many files have changed in this diff Show More