瀏覽代碼

Merge pull request #67585 from bruvzg/fix_no_graphite_build

[TextServer] Fix build with disabled graphite.
Rémi Verschelde 2 年之前
父節點
當前提交
76ef71bda0
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      modules/text_server_adv/SCsub

+ 6 - 1
modules/text_server_adv/SCsub

@@ -131,9 +131,14 @@ if env["builtin_harfbuzz"]:
         env_harfbuzz.Append(
             CCFLAGS=[
                 "-DHAVE_FREETYPE",
-                "-DHAVE_GRAPHITE2",
             ]
         )
+        if env["graphite"]:
+            env_harfbuzz.Append(
+                CCFLAGS=[
+                    "-DHAVE_GRAPHITE2",
+                ]
+            )
         if env["builtin_freetype"]:
             env_harfbuzz.Prepend(CPPPATH=["#thirdparty/freetype/include"])
         if env["builtin_graphite"] and env["graphite"]: