diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-03-12 09:37:01 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-03-12 09:37:01 +0100 |
commit | ef18dadfeee983a0983ebc7f1767619d0009eb1d (patch) | |
tree | 9f18adaa0b3b0e80f555e20dcc6dd561ccea188b | |
parent | 0e3c9d6f67db021f7890e90b0233c24852f1cea9 (diff) |
gstreamer: Build without registry support on iOS
-rw-r--r-- | recipes/gstreamer.recipe | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes/gstreamer.recipe b/recipes/gstreamer.recipe index 367f416..feb5721 100644 --- a/recipes/gstreamer.recipe +++ b/recipes/gstreamer.recipe @@ -57,5 +57,10 @@ class Recipe(recipe.Recipe): if self.config.target_platform == Platform.ANDROID: self.make = '%s libcheckinternal_la_LIBADD=""' % self.make + if self.config.target_platform == Platform.IOS: + # iOS only supports static builds so plugins must be linked + # and registered statically. + self.configure_options += ' --disable-registry ' + if self.config.variants.nodebug: self.configure_options += ' --disable-gst-debug' |