From 36b2b3f561541da00f62b6714985ccb34ae9e20b Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Fri, 11 Sep 2026 08:30:52 +0200 Subject: [PATCH] package/openscap: propagate dependencies of libxmlsec1 after bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In commit fef9cad1fe84b4366e705adb03470e12199ffd25 ("package/libxmlsec1: bump version to 1.3.12"), libxmlsec1 was bumped, and alongside some additional "depends on" were added. However, these new "depends on" were not propagated to reverse dependencies of libxmlsec1, i.e. openscap, causing Kconfig warnings: WARNING: unmet direct dependencies detected for BR2_PACKAGE_LIBXMLSEC1 Depends on [n]: BR2_TOOLCHAIN_GCC_AT_LEAST_7 [=n] && BR2_TOOLCHAIN_HAS_ATOMIC [=n] Selected by [y]: - BR2_PACKAGE_OPENSCAP [=y] && BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS [=y] && !BR2_STATIC_LIBS [=n] && BR2_TOOLCHAIN_HAS_THREADS_NPTL [=y] and potentially some build issues, even though we didn't check in the autobuilders for potential failures. This commit fixes that by properly propagating the new dependencies. Cc: Alexis Lothoré Cc: Julien Olivain Signed-off-by: Thomas Petazzoni Acked-by: Alexis Lothoré Signed-off-by: Julien Olivain --- package/openscap/Config.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/package/openscap/Config.in b/package/openscap/Config.in index 01c628194c..b6deae0a5f 100644 --- a/package/openscap/Config.in +++ b/package/openscap/Config.in @@ -3,6 +3,8 @@ config BR2_PACKAGE_OPENSCAP depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt depends on !BR2_STATIC_LIBS # dlfcn.h depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # libxmlsec1 + depends on BR2_TOOLCHAIN_HAS_ATOMIC # libxmlsec1 select BR2_PACKAGE_LIBCURL # In theory should build without crypto, but in practice it # doesn't: https://github.com/OpenSCAP/openscap/issues/2310 @@ -19,6 +21,8 @@ config BR2_PACKAGE_OPENSCAP https://www.open-scap.org/ https://github.com/OpenSCAP/openscap -comment "openscap needs a toolchain w/ dynamic library, NPTL" +comment "openscap needs a toolchain w/ dynamic library, NPTL, gcc >= 7" depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS - depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL + depends on BR2_TOOLCHAIN_HAS_ATOMIC + depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || \ + !BR2_TOOLCHAIN_GCC_AT_LEAST_7