From 4dd1886b644329cbe15db6ccb246bade7e0a6107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Kundr=C3=A1t?= Date: Thu, 17 Sep 2026 16:07:00 +0200 Subject: [PATCH] Fix compatibility with libyang 6.3.0+ Since upstream commit CESNET/libyang@b6ccfc9e016576af387a8527da29c9bf9aff3d8f, `libyang.h` no longer pulls in `plugins.h`, and therefore `lyplg_add_extension_plugin` was not declared properly. Co-authored-by: Claude Sonnet 5 --- cffi/source.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cffi/source.c b/cffi/source.c index 88b08bd..5f23c41 100644 --- a/cffi/source.c +++ b/cffi/source.c @@ -4,6 +4,7 @@ */ #include +#include #include #if LY_VERSION_MAJOR * 10000 + LY_VERSION_MINOR * 100 + LY_VERSION_MICRO < 50000