From cefa0a26854684c11f4b7fe896bcbd8dafba4553 Mon Sep 17 00:00:00 2001 From: Vasilito Date: Tue, 28 Apr 2026 09:32:24 +0100 Subject: [PATCH] build: glib build fix (suppress impl-func-decl error), suppress curl/git - glib: add -Dc_args=-Wno-error=implicit-function-declaration - curl, git: suppressed from full config (not needed for boot) - dbus: -Depoll=disabled for relibc compat - Makefile: cache auto-commit after successful build --- recipes/libs/glib/recipe.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/libs/glib/recipe.toml b/recipes/libs/glib/recipe.toml index b0bc710758..f99a7e740f 100644 --- a/recipes/libs/glib/recipe.toml +++ b/recipes/libs/glib/recipe.toml @@ -18,5 +18,6 @@ script = """ DYNAMIC_INIT cookbook_meson \ -Ddefault_library=shared \ - -Dxattr=false + -Dxattr=false \ + -Dc_args=-Wno-error=implicit-function-declaration """