summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAkira TAGOH <akira@tagoh.org>2022-01-17 16:19:22 +0900
committerAkira TAGOH <akira@tagoh.org>2022-01-17 16:19:22 +0900
commit55eb1ef89bc6f25f2ea6a9695edb93c12e368686 (patch)
treefaaef17d78beba7733cf8e4088436c6b58f04140 /meson.build
parent9a6ad6f1c5f4c6024370b0b54aaa4b74ecced62c (diff)
downloadfontconfig-55eb1ef89bc6f25f2ea6a9695edb93c12e368686.tar.gz
Add an user font directory for Win32 to the default font path
Patch from @takase1121 Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/144
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 7376784..89be258 100644
--- a/meson.build
+++ b/meson.build
@@ -208,7 +208,7 @@ prefix = get_option('prefix')
fonts_conf = configuration_data()
if host_machine.system() == 'windows'
- fc_fonts_path = ['WINDOWSFONTDIR']
+ fc_fonts_path = ['WINDOWSFONTDIR', 'WINDOWSUSERFONTDIR']
fc_cachedir = 'LOCAL_APPDATA_FONTCONFIG_CACHE'
else
if host_machine.system() == 'darwin'