diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-05-12 01:42:54 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-05-26 17:07:01 +0530 |
commit | a5048b9a9300ce3fbd30d230667f003efea104a6 (patch) | |
tree | 97dc61bf48fd20f747b096f872fa9a26af29ac04 /recipes/fribidi.recipe | |
parent | 57b1b23b5c896f17ad0511542e927413b88d470f (diff) |
cerbero: Some recipes actually do need a build machine compiler
Make this a strict opt-in so we can track the usage of this feature,
and to minimize the risk of bugs.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/480>
Diffstat (limited to 'recipes/fribidi.recipe')
-rw-r--r-- | recipes/fribidi.recipe | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes/fribidi.recipe b/recipes/fribidi.recipe index f0071cde..4800804e 100644 --- a/recipes/fribidi.recipe +++ b/recipes/fribidi.recipe @@ -10,6 +10,10 @@ class Recipe(recipe.Recipe): url = 'https://github.com/fribidi/fribidi/releases/download/v%(version)s/fribidi-%(version)s.tar.bz2' tarball_checksum = '6a64f2a687f5c4f203a46fa659f43dd43d1f8b845df8d723107e8a7e6158e4ce' licenses = [License.LGPLv2_1Plus] + + # gen.tab/gen-unicode-version needs to be built and run during compilation + meson_needs_build_machine_compiler = True + deps = ['glib'] patches = [ # Taken from upstream master, remove on bump |