Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libxslt for openSUSE:Factory checked in at 2024-05-30 15:32:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libxslt (Old) and /work/SRC/openSUSE:Factory/.libxslt.new.24587 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "libxslt" Thu May 30 15:32:27 2024 rev:69 rq:1177468 version:1.1.39 Changes: -------- --- /work/SRC/openSUSE:Factory/libxslt/libxslt.changes 2024-05-07 18:02:11.063846691 +0200 +++ /work/SRC/openSUSE:Factory/.libxslt.new.24587/libxslt.changes 2024-05-30 15:32:30.428352141 +0200 @@ -1,0 +2,6 @@ +Fri May 24 16:14:39 UTC 2024 - Christophe Marin <christophe@krop.fr> + +- Add upstream build fix: + * 0001-tests-Fix-build-with-older-libxml2.patch + +------------------------------------------------------------------- New: ---- 0001-tests-Fix-build-with-older-libxml2.patch BETA DEBUG BEGIN: New:- Add upstream build fix: * 0001-tests-Fix-build-with-older-libxml2.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libxslt.spec ++++++ --- /var/tmp/diff_new_pack.vkrdZM/_old 2024-05-30 15:32:32.380423425 +0200 +++ /var/tmp/diff_new_pack.vkrdZM/_new 2024-05-30 15:32:32.396424009 +0200 @@ -42,6 +42,8 @@ Patch1: libxslt-random-seed.patch # PATCH-FIX_UPSTREAM -- gcc14-runtest-no-const.patch Patch2: gcc14-runtest-no-const.patch +# PATCH-FIX-UPSTREAM -- 0001-tests-Fix-build-with-older-libxml2.patch +Patch3: 0001-tests-Fix-build-with-older-libxml2.patch # ### SUSE patches starts on 1000 # PATCH-FIX-SUSE ++++++ 0001-tests-Fix-build-with-older-libxml2.patch ++++++ From 02a57a01c603462ce8cc65fc64076a107ccf758e Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer <wellnhofer@aevum.de> Date: Fri, 1 Dec 2023 21:05:19 +0100 Subject: [PATCH] tests: Fix build with older libxml2 Fixes #99. --- tests/runtest.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/runtest.c b/tests/runtest.c index ea08824..f61c66a 100644 --- a/tests/runtest.c +++ b/tests/runtest.c @@ -456,7 +456,8 @@ initializeLibxml2(void) { xmlSetExternalEntityLoader(xmlNoNetExternalEntityLoader); xmlSetGenericErrorFunc(NULL, testErrorHandler); xsltSetGenericErrorFunc(NULL, testErrorHandler); - xmlSetStructuredErrorFunc(NULL, testStructuredErrorHandler); + xmlSetStructuredErrorFunc(NULL, + (xmlStructuredErrorFunc) testStructuredErrorHandler); exsltRegisterAll(); xsltRegisterTestModule(); xsltMaxDepth = 200; -- 2.45.1