Skip to content

Commit

Permalink
Fix meson build failure in macOS (appleframeworks not found)
Browse files Browse the repository at this point in the history
Signed-off-by: Zoltan Fridrich <[email protected]>
  • Loading branch information
ZoltanFridrich committed Nov 15, 2023
1 parent 66f1fc7 commit b7589ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b7589ec

Please sign in to comment.