diff options
author | Joshua Watt <JPEWhacker@gmail.com> | 2021-02-12 10:51:57 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-13 17:01:12 +0000 |
commit | 7f70eedc13193045768bf61cb344a1cba3012a28 (patch) | |
tree | 9aa3c9295aafa35d4815a6138767a391c2a8262d /meta/recipes-multimedia | |
parent | 973d2a35ef0112e52cea0170654bdae3f7035863 (diff) | |
download | poky-7f70eedc13193045768bf61cb344a1cba3012a28.tar.gz |
libomxil: Fix up commercial license flag
The commercial license flag on libomxil is set because it may include
the Adaptive Multi-Rate audio codec (AMR) using FFmepg, which is patent
encumbered.
It turns out this component is disabled by default in the recipe; add a
PACKAGECONFIG to enable it and trigger the "commercial" LICENSE_FLAGS on
it. This make the default build configuration clean unless a user
specifically asks for AMR support, and prevents them from marking the
recipe with the "commerical" flag unnecessarily which could hide
potential problems later on.
(From OE-Core rev: 5f61e20002c2af93e2d6810574e23606925526ee)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
-rw-r--r-- | meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb index 2061c280e4..82cdaf54c7 100644 --- a/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb +++ b/meta/recipes-multimedia/libomxil/libomxil_0.9.3.bb | |||
@@ -4,7 +4,7 @@ DESCRIPTION = "Bellagio is an opensource implementation of the Khronos OpenMAX \ | |||
4 | HOMEPAGE = "http://omxil.sourceforge.net/" | 4 | HOMEPAGE = "http://omxil.sourceforge.net/" |
5 | 5 | ||
6 | LICENSE = "LGPLv2.1+" | 6 | LICENSE = "LGPLv2.1+" |
7 | LICENSE_FLAGS = "commercial" | 7 | LICENSE_FLAGS = "${@bb.utils.contains('PACKAGECONFIG', 'amr', 'commercial', '', d)}" |
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=ae6f0f4dbc7ac193b50f323a6ae191cb \ | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=ae6f0f4dbc7ac193b50f323a6ae191cb \ |
9 | file://src/omxcore.h;beginline=1;endline=27;md5=806b1e5566c06486fe8e42b461e03a90" | 9 | file://src/omxcore.h;beginline=1;endline=27;md5=806b1e5566c06486fe8e42b461e03a90" |
10 | 10 | ||
@@ -28,6 +28,10 @@ PROVIDES += "virtual/libomxil" | |||
28 | 28 | ||
29 | CFLAGS += "-fcommon" | 29 | CFLAGS += "-fcommon" |
30 | 30 | ||
31 | PACKAGECONFIG ??= "" | ||
32 | |||
33 | PACKAGECONFIG[amr] = "--enable-amr,," | ||
34 | |||
31 | # | 35 | # |
32 | # The .so files under ${libdir}/bellagio are not intended to be versioned and symlinked. | 36 | # The .so files under ${libdir}/bellagio are not intended to be versioned and symlinked. |
33 | # Make sure they get packaged in the main package. | 37 | # Make sure they get packaged in the main package. |