diff options
author | Damiano Galassi <[email protected]> | 2017-01-18 10:47:13 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-01-18 12:11:12 +0100 |
commit | 81550230adc2359d7ec4f5cff6a5c960b7df7e6e (patch) | |
tree | 6cc1e547017c494c4e54156054d597eb321c8ced /test/module.defs | |
parent | 922db9bec26e1def4c8ba60afb2147cc06ec524d (diff) |
disable fontconfig on macOS
Diffstat (limited to 'test/module.defs')
-rw-r--r-- | test/module.defs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/module.defs b/test/module.defs index 3750d6efd..5f19ebecc 100644 --- a/test/module.defs +++ b/test/module.defs @@ -15,10 +15,14 @@ TEST.libs = $(LIBHB.a) TEST.GCC.l = \ ass avresample avformat avcodec avfilter avutil mp3lame dvdnav \ - dvdread fontconfig fribidi \ + dvdread fribidi \ samplerate swscale vpx theoraenc theoradec vorbis vorbisenc ogg x264 \ bluray freetype xml2 bz2 z jansson harfbuzz opus +ifneq ($(BUILD.system),darwin) + TEST.GCC.l += fontconfig +endif + ifeq (1,$(FEATURE.qsv)) TEST.GCC.D += USE_QSV HAVE_THREADS=1 ifeq ($(BUILD.system),linux) @@ -51,7 +55,7 @@ BUILD.out += $(TEST.install.exe) TEST.GCC.I += $(LIBHB.GCC.I) ifeq ($(BUILD.system),darwin) - TEST.GCC.f += IOKit CoreServices AudioToolbox Foundation + TEST.GCC.f += IOKit CoreServices CoreText CoreGraphics AudioToolbox Foundation TEST.GCC.l += iconv else ifeq ($(BUILD.system),linux) TEST.GCC.l += pthread dl m |