diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-09-17 08:38:13 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-09-20 15:34:02 -0700 |
commit | 6d35240bfd4f990119e3bce06cbdc2245e1a3ea8 (patch) | |
tree | 7a35a07de38c809bb7e0abd5c05303b401a70824 | |
parent | 2ccedccd6e0665d06ba66a4fb5d4fb72de40b429 (diff) | |
download | meta-openembedded-6d35240bfd4f990119e3bce06cbdc2245e1a3ea8.tar.gz |
poco: Do not enable MongoDB packageconfig by default
It needs mongodb which is only buildable when meta-python is in bblayers
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/poco/poco_1.12.4.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/poco/poco_1.12.4.bb b/meta-oe/recipes-support/poco/poco_1.12.4.bb index b02b84fa6..8505f66e8 100644 --- a/meta-oe/recipes-support/poco/poco_1.12.4.bb +++ b/meta-oe/recipes-support/poco/poco_1.12.4.bb | |||
@@ -24,8 +24,9 @@ inherit cmake ptest | |||
24 | # By default the most commonly used poco components are built | 24 | # By default the most commonly used poco components are built |
25 | # Foundation is built anyway and doesn't need to be listed explicitly | 25 | # Foundation is built anyway and doesn't need to be listed explicitly |
26 | # these don't have dependencies outside oe-core | 26 | # these don't have dependencies outside oe-core |
27 | PACKAGECONFIG ??= "XML JSON MongoDB PDF Util Net NetSSL Crypto JWT Data DataSQLite Zip Encodings Redis Prometheus" | 27 | PACKAGECONFIG ??= "XML JSON PDF Util Net NetSSL Crypto JWT Data DataSQLite Zip Encodings Redis Prometheus" |
28 | # MongoDB does not build for all architectures yet keep in sync with COMPATIBLE_HOST list in mongodb recipe | 28 | # MongoDB does not build for all architectures yet keep in sync with COMPATIBLE_HOST list in mongodb recipe |
29 | # and mongodb needs meta-python enabled as well | ||
29 | PACKAGECONFIG:remove:riscv32 = "MongoDB" | 30 | PACKAGECONFIG:remove:riscv32 = "MongoDB" |
30 | PACKAGECONFIG:remove:riscv64 = "MongoDB" | 31 | PACKAGECONFIG:remove:riscv64 = "MongoDB" |
31 | PACKAGECONFIG:remove:mipsarch = "MongoDB" | 32 | PACKAGECONFIG:remove:mipsarch = "MongoDB" |