]> git.wh0rd.org - fontconfig.git/blame - fonts.conf.in
Work around FreeType bug when glyph name buffer is too small.
[fontconfig.git] / fonts.conf.in
CommitLineData
24330d27
KP
1<?xml version="1.0"?>
2<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
302e07f1 3<!-- /etc/fonts/fonts.conf file to configure system font access -->
24330d27
KP
4<fontconfig>
5
a6531d8c 6<!--
302e07f1
KP
7 DO NOT EDIT THIS FILE.
8 IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
9 LOCAL CHANGES BELONG IN 'local.conf'.
10
a6531d8c
KP
11 The intent of this standard configuration file is to be adequate for
12 most environments. If you have a reasonably normal environment and
13 have found problems with this configuration, they are probably
ef82cce1
KP
14 things that others will also want fixed. Please submit any
15 problems to the fontconfig bugzilla system located at fontconfig.org
a6531d8c 16
302e07f1 17 Note that the normal 'make install' procedure for fontconfig is to
0ce819b6
KP
18 replace any existing fonts.conf file with the new version. Place
19 any local customizations in local.conf which this file references.
20
a6531d8c
KP
21 Keith Packard
22-->
23
c5a0b541 24<!-- Font directory list -->
24330d27 25
20fa60c9
KP
26 <dir>@FC_DEFAULT_FONTS@</dir>
27 @FC_FONTPATH@
a6531d8c 28 <dir>~/.fonts</dir>
24330d27 29
7410e40b
PL
30<!-- Font cache directory list -->
31
32 <cachedir>@FC_CACHEDIR@</cachedir>
d2f78684 33 <cachedir>~/.fontconfig</cachedir>
7410e40b 34
24330d27
KP
35<!--
36 Accept deprecated 'mono' alias, replacing it with 'monospace'
37-->
38 <match target="pattern">
39 <test qual="any" name="family">
40 <string>mono</string>
41 </test>
42 <edit name="family" mode="assign">
43 <string>monospace</string>
44 </edit>
45 </match>
46
fa244f3d
KP
47<!--
48 Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
49-->
50 <match target="pattern">
51 <test qual="any" name="family">
52 <string>sans serif</string>
53 </test>
54 <edit name="family" mode="assign">
55 <string>sans-serif</string>
56 </edit>
57 </match>
58
24330d27
KP
59<!--
60 Accept deprecated 'sans' alias, replacing it with 'sans-serif'
61-->
62 <match target="pattern">
63 <test qual="any" name="family">
64 <string>sans</string>
65 </test>
66 <edit name="family" mode="assign">
67 <string>sans-serif</string>
68 </edit>
69 </match>
70
d55620c9
JC
71<!--
72 Load local system customization file
73-->
74 <include ignore_missing="yes">conf.d</include>
75
fb9545b1 76 <config>
24330d27
KP
77<!--
78 These are the default Unicode chars that are expected to be blank
79 in fonts. All other blank chars are assumed to be broken and
80 won't appear in the resulting charsets
81 -->
fb9545b1 82 <blank>
9cc93576 83 <int>0x0020</int> <!-- SPACE -->
8759822e
KP
84 <int>0x00A0</int> <!-- NO-BREAK SPACE -->
85 <int>0x00AD</int> <!-- SOFT HYPHEN -->
86 <int>0x034F</int> <!-- COMBINING GRAPHEME JOINER -->
87 <int>0x0600</int> <!-- ARABIC NUMBER SIGN -->
88 <int>0x0601</int> <!-- ARABIC SIGN SANAH -->
89 <int>0x0602</int> <!-- ARABIC FOOTNOTE MARKER -->
90 <int>0x0603</int> <!-- ARABIC SIGN SAFHA -->
91 <int>0x06DD</int> <!-- ARABIC END OF AYAH -->
92 <int>0x070F</int> <!-- SYRIAC ABBREVIATION MARK -->
93 <int>0x115F</int> <!-- HANGUL CHOSEONG FILLER -->
9cc93576
KP
94 <int>0x1160</int> <!-- HANGUL JUNGSEONG FILLER -->
95 <int>0x1680</int> <!-- OGHAM SPACE MARK -->
8759822e
KP
96 <int>0x17B4</int> <!-- KHMER VOWEL INHERENT AQ -->
97 <int>0x17B5</int> <!-- KHMER VOWEL INHERENT AA -->
98 <int>0x180E</int> <!-- MONGOLIAN VOWEL SEPARATOR -->
9cc93576
KP
99 <int>0x2000</int> <!-- EN QUAD -->
100 <int>0x2001</int> <!-- EM QUAD -->
101 <int>0x2002</int> <!-- EN SPACE -->
102 <int>0x2003</int> <!-- EM SPACE -->
103 <int>0x2004</int> <!-- THREE-PER-EM SPACE -->
104 <int>0x2005</int> <!-- FOUR-PER-EM SPACE -->
105 <int>0x2006</int> <!-- SIX-PER-EM SPACE -->
106 <int>0x2007</int> <!-- FIGURE SPACE -->
107 <int>0x2008</int> <!-- PUNCTUATION SPACE -->
108 <int>0x2009</int> <!-- THIN SPACE -->
8759822e
KP
109 <int>0x200A</int> <!-- HAIR SPACE -->
110 <int>0x200B</int> <!-- ZERO WIDTH SPACE -->
111 <int>0x200C</int> <!-- ZERO WIDTH NON-JOINER -->
112 <int>0x200D</int> <!-- ZERO WIDTH JOINER -->
113 <int>0x200E</int> <!-- LEFT-TO-RIGHT MARK -->
114 <int>0x200F</int> <!-- RIGHT-TO-LEFT MARK -->
9cc93576
KP
115 <int>0x2028</int> <!-- LINE SEPARATOR -->
116 <int>0x2029</int> <!-- PARAGRAPH SEPARATOR -->
8759822e
KP
117 <int>0x202A</int> <!-- LEFT-TO-RIGHT EMBEDDING -->
118 <int>0x202B</int> <!-- RIGHT-TO-LEFT EMBEDDING -->
119 <int>0x202C</int> <!-- POP DIRECTIONAL FORMATTING -->
120 <int>0x202D</int> <!-- LEFT-TO-RIGHT OVERRIDE -->
121 <int>0x202E</int> <!-- RIGHT-TO-LEFT OVERRIDE -->
122 <int>0x202F</int> <!-- NARROW NO-BREAK SPACE -->
123 <int>0x205F</int> <!-- MEDIUM MATHEMATICAL SPACE -->
9cc93576
KP
124 <int>0x2060</int> <!-- WORD JOINER -->
125 <int>0x2061</int> <!-- FUNCTION APPLICATION -->
126 <int>0x2062</int> <!-- INVISIBLE TIMES -->
127 <int>0x2063</int> <!-- INVISIBLE SEPARATOR -->
ce50587c
KP
128 <int>0x206A</int> <!-- INHIBIT SYMMETRIC SWAPPING -->
129 <int>0x206B</int> <!-- ACTIVATE SYMMETRIC SWAPPING -->
130 <int>0x206C</int> <!-- INHIBIT ARABIC FORM SHAPING -->
131 <int>0x206D</int> <!-- ACTIVATE ARABIC FORM SHAPING -->
132 <int>0x206E</int> <!-- NATIONAL DIGIT SHAPES -->
133 <int>0x206F</int> <!-- NOMINAL DIGIT SHAPES -->
9cc93576 134 <int>0x3000</int> <!-- IDEOGRAPHIC SPACE -->
f9ad97b0 135 <int>0x3164</int> <!-- HANGUL FILLER -->
8759822e
KP
136 <int>0xFEFF</int> <!-- ZERO WIDTH NO-BREAK SPACE -->
137 <int>0xFFA0</int> <!-- HALFWIDTH HANGUL FILLER -->
138 <int>0xFFF9</int> <!-- INTERLINEAR ANNOTATION ANCHOR -->
139 <int>0xFFFA</int> <!-- INTERLINEAR ANNOTATION SEPARATOR -->
140 <int>0xFFFB</int> <!-- INTERLINEAR ANNOTATION TERMINATOR -->
fb9545b1
KP
141 </blank>
142<!--
143 Rescan configuration every 30 seconds when FcFontSetList is called
144 -->
145 <rescan>
146 <int>30</int>
147 </rescan>
148 </config>
24330d27
KP
149
150</fontconfig>