summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Wicki <patrick.wicki@siemens.com>2025-11-28 21:48:26 +0100
committerKhem Raj <raj.khem@gmail.com>2025-11-29 08:32:24 -0800
commit9cf103dc8548d2b6b873364c239cd05673604fb1 (patch)
tree18a7cd13d724002caa73fc66d91d4a440ee608b1
parentaaebfe4452d984160dd180e0cd0fada54317f407 (diff)
downloadmeta-openembedded-9cf103dc8548d2b6b873364c239cd05673604fb1.tar.gz
fluentbit: unbundle msgpack, sqlite3 and zstd
With https://github.com/fluent/fluent-bit/pull/9572 it is now possible to unbundle these and use the system libs instead. Signed-off-by: Patrick Wicki <patrick.wicki@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-extended/fluentbit/fluentbit_4.2.0.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/fluentbit/fluentbit_4.2.0.bb b/meta-oe/recipes-extended/fluentbit/fluentbit_4.2.0.bb
index 279486eee3..2c9b874e50 100644
--- a/meta-oe/recipes-extended/fluentbit/fluentbit_4.2.0.bb
+++ b/meta-oe/recipes-extended/fluentbit/fluentbit_4.2.0.bb
@@ -57,10 +57,11 @@ PACKAGECONFIG ??= "\
57PACKAGECONFIG:remove:toolchain-clang = "ipo" 57PACKAGECONFIG:remove:toolchain-clang = "ipo"
58 58
59# Use system libs 59# Use system libs
60PACKAGECONFIG[prefer-system-libs] = "-DFLB_PREFER_SYSTEM_LIBS=Yes,-DFLB_PREFER_SYSTEM_LIBS=No, nghttp2 c-ares" 60PACKAGECONFIG[prefer-system-libs] = "-DFLB_PREFER_SYSTEM_LIBS=Yes,-DFLB_PREFER_SYSTEM_LIBS=No, nghttp2 c-ares msgpack-c zstd"
61DEPENDS += " ${@bb.utils.contains('PACKAGECONFIG', 'prefer-system-libs backtrace', 'libbacktrace', '', d)}" 61DEPENDS += " ${@bb.utils.contains('PACKAGECONFIG', 'prefer-system-libs backtrace', 'libbacktrace', '', d)}"
62DEPENDS += " ${@bb.utils.contains('PACKAGECONFIG', 'prefer-system-libs jemalloc', 'jemalloc', '', d)}" 62DEPENDS += " ${@bb.utils.contains('PACKAGECONFIG', 'prefer-system-libs jemalloc', 'jemalloc', '', d)}"
63DEPENDS += " ${@bb.utils.contains('PACKAGECONFIG', 'prefer-system-libs luajit', 'luajit', '', d)}" 63DEPENDS += " ${@bb.utils.contains('PACKAGECONFIG', 'prefer-system-libs luajit', 'luajit', '', d)}"
64DEPENDS += " ${@bb.utils.contains('PACKAGECONFIG', 'prefer-system-libs sqldb', 'sqlite3', '', d)}"
64 65
65PACKAGECONFIG[all] = "-DFLB_ALL=Yes,-DFLB_ALL=No" 66PACKAGECONFIG[all] = "-DFLB_ALL=Yes,-DFLB_ALL=No"
66PACKAGECONFIG[arrow] = "-DFLB_ARROW=Yes,-DFLB_ARROW=No" 67PACKAGECONFIG[arrow] = "-DFLB_ARROW=Yes,-DFLB_ARROW=No"