Skip to content
Snippets Groups Projects
Commit 259fd7e0 authored by Matthew Waters's avatar Matthew Waters :koala: Committed by Nirbheek Chauhan
Browse files

zbar/macos: workaround not finding -liconv

Part-of: <!1289>
parent 4dc9e84d
No related branches found
No related tags found
1 merge request!1289ci: update to macos sonoma (14)
......@@ -21,3 +21,6 @@ class Recipe(recipe.Recipe):
self.set_env('CPPFLAGS', '')
if self.config.target_platform in [Platform.IOS, Platform.DARWIN]:
self.autoreconf = True
# since MacOS 14.0 (sonoma), we can't seem to successfully find the iconv library so add it manually
if self.config.target_platform in [Platform.DARWIN]:
self.set_env('LDFLAGS', self.get_env('LDFLAGS') + ' -liconv')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment