diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-03-12 10:26:41 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-03-12 10:27:39 +0100 |
commit | 0b10ceb984a2eb4c8c06b3995c4790569a2d4ab2 (patch) | |
tree | 15d81bd29a6f1ce6207936a835effc34c41dff83 /recipes/gst-libav-1.0.recipe | |
parent | 65daa459f820a19af9eeba3196180419fc01b4b7 (diff) |
gstreamer-1.0: Update 1.0 recipes with changes from the 0.10 versions
Diffstat (limited to 'recipes/gst-libav-1.0.recipe')
-rw-r--r-- | recipes/gst-libav-1.0.recipe | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes/gst-libav-1.0.recipe b/recipes/gst-libav-1.0.recipe index 33f7b7ac..dd82fbd0 100644 --- a/recipes/gst-libav-1.0.recipe +++ b/recipes/gst-libav-1.0.recipe @@ -18,7 +18,6 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform != Platform.LINUX: self.configure_options += ' --disable-gtk-doc' - if self.config.target_platform == Platform.DARWIN: if self.config.target_arch == Architecture.X86_64: asflags = ' -arch x86_64 -m64' @@ -31,7 +30,7 @@ class Recipe(recipe.Recipe): def configure(self): super(recipe.Recipe, self).configure() - if self.config.target_platform == Platform.DARWIN: + if self.config.target_platform in [Platform.DARWIN, Platform.IOS]: if self.config.target_arch == Architecture.X86: libav_path = os.path.join(self.build_dir, 'gst-libs', 'ext', 'libav') replacements = {'HAVE_EBX_AVAILABLE=yes': 'HAVE_EBX_AVAILABLE=no', |