1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Don't check for fontconfig on macOS

This commit is contained in:
Marijn van der Werf
2017-05-29 10:47:52 +02:00
committed by Gymnasiast
parent 61228fc4e8
commit 615580dc03

View File

@@ -65,7 +65,9 @@ if (NOT DISABLE_TTF)
# FreeType is required by SDL2_ttf, but not wired up properly in package
PKG_CHECK_MODULES(FREETYPE REQUIRED freetype2)
endif ()
PKG_CHECK_MODULES(FONTCONFIG REQUIRED fontconfig)
if (UNIX AND NOT APPLE)
PKG_CHECK_MODULES(FONTCONFIG REQUIRED fontconfig)
endif ()
PKG_CHECK_MODULES(SDL2_TTF REQUIRED SDL2_ttf)
endif ()