diff options
author | Oleg Oshmyan <[email protected]> | 2017-03-12 18:31:36 +0200 |
---|---|---|
committer | John Stebbins <[email protected]> | 2017-03-12 10:31:36 -0600 |
commit | bd78a82b032a48d9f382c56ddc72529a047c0893 (patch) | |
tree | 37610a430682e02e25a23c2c4aca6e1d9efa5aaf /test | |
parent | 3a4beb186fcb6b6000f12cd421afcc2e0922528a (diff) |
Remove Fontconfig on Windows (#610)
* Remove Fontconfig on Windows
Let libass use its DirectWrite font provider backend instead of Fontconfig.
This eliminates Fontconfig's font cache generation delay that occurred
at the start of an encode after a system font was (un)installed or when
HandBrake was installed and used to burn text subtitles for the first time.
* Remove LibHB's dependency on Fontconfig when it's not used
Diffstat (limited to 'test')
-rw-r--r-- | test/module.defs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/module.defs b/test/module.defs index 5f19ebecc..1202a657f 100644 --- a/test/module.defs +++ b/test/module.defs @@ -19,7 +19,7 @@ TEST.GCC.l = \ samplerate swscale vpx theoraenc theoradec vorbis vorbisenc ogg x264 \ bluray freetype xml2 bz2 z jansson harfbuzz opus -ifneq ($(BUILD.system),darwin) +ifeq (,$(filter $(BUILD.system),darwin cygwin mingw)) TEST.GCC.l += fontconfig endif |