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>
This commit is contained in:
Khem Raj
2023-09-17 08:38:13 -07:00
parent 2ccedccd6e
commit 6d35240bfd
+2 -1
View File
@@ -24,8 +24,9 @@ inherit cmake ptest
# By default the most commonly used poco components are built # By default the most commonly used poco components are built
# Foundation is built anyway and doesn't need to be listed explicitly # Foundation is built anyway and doesn't need to be listed explicitly
# these don't have dependencies outside oe-core # these don't have dependencies outside oe-core
PACKAGECONFIG ??= "XML JSON MongoDB PDF Util Net NetSSL Crypto JWT Data DataSQLite Zip Encodings Redis Prometheus" PACKAGECONFIG ??= "XML JSON PDF Util Net NetSSL Crypto JWT Data DataSQLite Zip Encodings Redis Prometheus"
# MongoDB does not build for all architectures yet keep in sync with COMPATIBLE_HOST list in mongodb recipe # MongoDB does not build for all architectures yet keep in sync with COMPATIBLE_HOST list in mongodb recipe
# and mongodb needs meta-python enabled as well
PACKAGECONFIG:remove:riscv32 = "MongoDB" PACKAGECONFIG:remove:riscv32 = "MongoDB"
PACKAGECONFIG:remove:riscv64 = "MongoDB" PACKAGECONFIG:remove:riscv64 = "MongoDB"
PACKAGECONFIG:remove:mipsarch = "MongoDB" PACKAGECONFIG:remove:mipsarch = "MongoDB"