From b5640942d5218104cd55cf2b22ca2c8acd47cdab Mon Sep 17 00:00:00 2001 From: Zoltan Fridrich Date: Wed, 15 Nov 2023 12:52:20 +0100 Subject: [PATCH] Fix meson build failure in macOS (appleframeworks not found) Signed-off-by: Zoltan Fridrich --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 4c197cf5..94508fc2 100644 --- a/meson.build +++ b/meson.build @@ -67,7 +67,7 @@ if get_option('nls') and cc.has_header('libintl.h') if cc.has_function('dgettext', dependencies : libintl) libintl_deps += libintl if ['darwin', 'ios'].contains(host_system) - appleframeworks = dependency('appleframeworks', modules : 'foundation') + appleframeworks = dependency('appleframeworks', modules : 'CoreFoundation') if appleframeworks.found() libintl_deps += appleframeworks endif