From 2eeb803d8d27919ade167d364eb00a5465804a4a Mon Sep 17 00:00:00 2001 From: handsome_feng Date: Fri, 23 Aug 2024 21:09:38 +0800 Subject: [PATCH] merge fix-implicit-function-declaration.patch --- debian/changelog | 7 +++++++ src/config/libkyconf.c | 3 +++ src/log/writeFile.c | 1 + 3 files changed, 11 insertions(+) diff --git a/debian/changelog b/debian/changelog index 245a812..b690322 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libkysdk-base (2.2.0.1-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix FTBFS with -Werror=implicit-function-declaration (Closes: #1066656). + + -- Andrey Rakhmatullin Sat, 30 Mar 2024 12:44:02 +0500 + libkysdk-base (2.2.0.1-1) unstable; urgency=medium * New upstream release. diff --git a/src/config/libkyconf.c b/src/config/libkyconf.c index f7a460f..46e5334 100644 --- a/src/config/libkyconf.c +++ b/src/config/libkyconf.c @@ -21,6 +21,9 @@ #include "libkyconf.h" #include "structparse.h" +#include "jsonparse.h" +#include "gsettingsparse.h" +#include "xmlparse.h" #include #include #include diff --git a/src/log/writeFile.c b/src/log/writeFile.c index c28525c..803108a 100644 --- a/src/log/writeFile.c +++ b/src/log/writeFile.c @@ -25,6 +25,7 @@ #include #include #include +#include static int verify_file(char *pFileName) {