From e57e728532ea553be40abe88c4767f1c418cc417 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Thu, 20 Mar 2025 11:55:50 +0300 Subject: [PATCH] cmake: add missing FT_Get_Transform check --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b4f5aa61..203f2396c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -233,7 +233,7 @@ if (HB_HAVE_FREETYPE AND NOT TARGET freetype) set (CMAKE_REQUIRED_INCLUDES ${CMAKE_REQUIRED_INCLUDES} ${FREETYPE_INCLUDE_DIRS}) set (CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${FREETYPE_LIBRARIES}) - check_funcs(FT_Get_Var_Blend_Coordinates FT_Set_Var_Blend_Coordinates FT_Done_MM_Var) + check_funcs(FT_Get_Var_Blend_Coordinates FT_Set_Var_Blend_Coordinates FT_Done_MM_Var FT_Get_Transform) endif () if (HB_HAVE_FREETYPE)