Skip to content

Commit

Permalink
"Foudation" Apple Framework should be case sensitive
Browse files Browse the repository at this point in the history
As per issue #598, the Foundation AppleFramework should be
searched case-sensitively, to accomodate for case-sensitive APFS partitions.
  • Loading branch information
Carlos Laviola committed Nov 13, 2023
1 parent 66d6b42 commit c9904a5
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 : 'Foundation')
if appleframeworks.found()
libintl_deps += appleframeworks
endif
Expand Down

0 comments on commit c9904a5

Please sign in to comment.