blob: 4b978ada6611c6aa8c6f5f46a5970d6a17f02d63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<!-- $FreeBSD$ -->
<fontconfig>
<match target="font">
<or>
<test name="family">
<string>IPAMincho</string>
</test>
<test name="family">
<string>IPAGothic</string>
</test>
<test name="family">
<string>IPAPMincho</string>
</test>
<test name="family">
<string>IPAPGothic</string>
</test>
</or>
<edit name="autohint">
<bool>false</bool>
</edit>
</match>
</fontconfig>
|