From 908f5a7914d10d96f2441d53c9f4e153b801580c 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 b0bc7107..f99a7e74 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 """