diff options
author | Matthew Waters <matthew@centricular.com> | 2015-09-11 22:17:21 +1000 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2015-09-14 17:25:23 +1000 |
commit | f7f78d497eef9c658c321feea83a38dd5f4557e3 (patch) | |
tree | fb692944a562b2f66f6f76f7445f160bd1d4ad2b /recipes/libiconv.recipe | |
parent | d8eabc44239dfec470e025b04c2f4147dec3417a (diff) |
recipes: don't build libiconv on OSX/iOS
- It's provided by the relevant SDK's already
- cerbero builds a more recent version of libiconv that has a
different major version according to the dylib versioning scheme.
- linking with another library or framework that depends on the
provided libiconv (e.g. Qt) will fail due to a version mismatch.
https://bugzilla.gnome.org/show_bug.cgi?id=754881
Diffstat (limited to 'recipes/libiconv.recipe')
-rw-r--r-- | recipes/libiconv.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libiconv.recipe b/recipes/libiconv.recipe index 8a350786..589e1802 100644 --- a/recipes/libiconv.recipe +++ b/recipes/libiconv.recipe @@ -25,5 +25,5 @@ class Recipe(recipe.Recipe): files_lang = ['libiconv'] def prepare(self): - if self.config.target_platform != Platform.LINUX: + if self.config.target_platform not in [Platform.LINUX, Platform.DARWIN, Platform.IOS]: self.runtime_dep = True |