[TextServer] Fix build with disabled graphite.

This commit is contained in:
bruvzg 2022-10-18 18:41:31 +03:00
parent 4a96fce801
commit 634c2fbcae
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38

View file

@ -131,6 +131,11 @@ if env["builtin_harfbuzz"]:
env_harfbuzz.Append(
CCFLAGS=[
"-DHAVE_FREETYPE",
]
)
if env["graphite"]:
env_harfbuzz.Append(
CCFLAGS=[
"-DHAVE_GRAPHITE2",
]
)