From 878e7eed56a983d39e619d76d9dc1b64ae6f4e7b Mon Sep 17 00:00:00 2001 From: Peter Marko Date: Fri, 14 Mar 2025 21:50:34 +0100 Subject: [PATCH] fluentbit: add profiles package config Since the recipe tries to list every single option, add this one which is missing. It is enabled by default in cmake to enabling it by default in package config retains current settings. Signed-off-by: Peter Marko Signed-off-by: Khem Raj --- meta-oe/recipes-extended/fluentbit/fluentbit_3.2.8.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-extended/fluentbit/fluentbit_3.2.8.bb b/meta-oe/recipes-extended/fluentbit/fluentbit_3.2.8.bb index c7fc7d1e19..406a5b7b9e 100644 --- a/meta-oe/recipes-extended/fluentbit/fluentbit_3.2.8.bb +++ b/meta-oe/recipes-extended/fluentbit/fluentbit_3.2.8.bb @@ -45,6 +45,7 @@ PACKAGECONFIG ??= "\ metrics \ parser \ prefer-system-libs \ + profiles \ proxy-go \ record-accessor \ regex \ @@ -85,6 +86,7 @@ PACKAGECONFIG[metrics] = "-DFLB_METRICS=Yes,-DFLB_METRICS=No" PACKAGECONFIG[mtrace] = "-DFLB_MTRACE=Yes,-DFLB_MTRACE=No" PACKAGECONFIG[parser] = "-DFLB_PARSER=Yes,-DFLB_PARSER=No" PACKAGECONFIG[posix-tls] = "-DFLB_POSIX_TLS=Yes,-DFLB_POSIX_TLS=No" +PACKAGECONFIG[profiles] = "-DFLB_PROFILES=Yes,-DFLB_PROFILES=No" PACKAGECONFIG[proxy-go] = "-DFLB_PROXY_GO=Yes,-DFLB_PROXY_GO=No" PACKAGECONFIG[record-accessor] = "-DFLB_RECORD_ACCESSOR=Yes,-DFLB_RECORD_ACCESSOR=No" PACKAGECONFIG[regex] = "-DFLB_REGEX=Yes,-DFLB_REGEX=No"