summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-03-12 09:37:01 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2013-03-12 09:37:01 +0100
commitef18dadfeee983a0983ebc7f1767619d0009eb1d (patch)
tree9f18adaa0b3b0e80f555e20dcc6dd561ccea188b
parent0e3c9d6f67db021f7890e90b0233c24852f1cea9 (diff)
gstreamer: Build without registry support on iOS
-rw-r--r--recipes/gstreamer.recipe5
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'