diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2019-02-11 13:25:15 +0100 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2019-06-07 10:15:44 -0400 |
commit | 7772e6b1d896b08c0372e4fb66b278cb53033315 (patch) | |
tree | fb57be85fe222413516c0067dde8c2df83ff8cf1 /recipes/libtheora.recipe | |
parent | 8a54b1b88ba35ce1945ffeb7904198c2d4945507 (diff) |
libtheora: disable examples in all platforms
Diffstat (limited to 'recipes/libtheora.recipe')
-rw-r--r-- | recipes/libtheora.recipe | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/recipes/libtheora.recipe b/recipes/libtheora.recipe index 4fef7ab7..7e8ce2cc 100644 --- a/recipes/libtheora.recipe +++ b/recipes/libtheora.recipe @@ -18,7 +18,7 @@ class Recipe(recipe.Recipe): 'libtheora/0005-build-allow-skipping-configure-in-autogen.sh.patch', 'libtheora/0006-Fix-cross-compilation-build.patch', ] - configure_options = ' --disable-spec --disable-doc' + configure_options = ' --disable-spec --disable-doc --disable-examples' files_libs = ['libtheora', 'libtheoradec', 'libtheoraenc'] files_bins = ['dvconnect', 'encodedv', 'dubdv'] @@ -29,11 +29,8 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform == Platform.ANDROID: - self.configure_options += ' --disable-examples' self.config_sh = 'sh autogen.sh' elif self.config.target_platform == Platform.IOS: self.patches += ['libtheora/0007-Don-t-use-fforce-addr.patch'] elif self.config.target_platform == Platform.DARWIN: self.patches += ['libtheora/0007-Don-t-use-fforce-addr.patch'] - elif self.config.cross_compiling(): - self.configure_options += ' --disable-examples' |