[packages/gtk-webkit3] fix build with libxml2 >= 2.12
atler
atler at pld-linux.org
Fri Jan 31 15:39:49 CET 2025
commit 47b59df67eb17717f506e2a4d77a8c8c066f8f06
Author: Jan Palus <atler at pld-linux.org>
Date: Fri Jan 31 14:32:08 2025 +0100
fix build with libxml2 >= 2.12
gtk-webkit3.spec | 20 +++++++++++---------
libxml2-2.12.patch | 28 ++++++++++++++++++++++++++++
2 files changed, 39 insertions(+), 9 deletions(-)
---
diff --git a/gtk-webkit3.spec b/gtk-webkit3.spec
index 053b704..5ab9e5e 100644
--- a/gtk-webkit3.spec
+++ b/gtk-webkit3.spec
@@ -30,6 +30,7 @@ Patch5: glib2.68.patch
Patch6: icu68.patch
Patch7: grammar.patch
Patch8: volatile.patch
+Patch9: libxml2-2.12.patch
URL: http://webkitgtk.org/
BuildRequires: /usr/bin/ld.gold
BuildRequires: EGL-devel
@@ -151,16 +152,17 @@ Dokumentacja API WebKita.
%prep
%setup -q -n webkitgtk-%{version}
%ifarch i386 i486
-%patch0 -p1
+%patch -P0 -p1
%endif
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
-%patch5 -p1
-%patch6 -p1
-%patch7 -p1
-%patch8 -p1
+%patch -P1 -p1
+%patch -P2 -p1
+%patch -P3 -p1
+%patch -P4 -p1
+%patch -P5 -p1
+%patch -P6 -p1
+%patch -P7 -p1
+%patch -P8 -p1
+%patch -P9 -p1
%build
%{__libtoolize}
diff --git a/libxml2-2.12.patch b/libxml2-2.12.patch
new file mode 100644
index 0000000..ec9d2ff
--- /dev/null
+++ b/libxml2-2.12.patch
@@ -0,0 +1,28 @@
+--- webkitgtk-2.4.11/Source/WebCore/xml/XSLTProcessor.h.orig 2016-04-10 08:48:37.000000000 +0200
++++ webkitgtk-2.4.11/Source/WebCore/xml/XSLTProcessor.h 2025-01-31 14:04:08.286871514 +0100
+@@ -64,7 +64,11 @@
+
+ void reset();
+
++#if LIBXML_VERSION >= 21200
++ static void parseErrorFunc(void* userData, const xmlError*);
++#else
+ static void parseErrorFunc(void* userData, xmlError*);
++#endif
+ static void genericErrorFunc(void* userData, const char* msg, ...);
+
+ // Only for libXSLT callbacks
+--- webkitgtk-2.4.11/Source/WebCore/xml/XSLTProcessorLibxslt.cpp.orig 2016-04-10 08:48:37.000000000 +0200
++++ webkitgtk-2.4.11/Source/WebCore/xml/XSLTProcessorLibxslt.cpp 2025-01-31 14:05:36.124409551 +0100
+@@ -77,7 +77,11 @@
+ // It would be nice to do something with this error message.
+ }
+
++#if LIBXML_VERSION >= 21200
++void XSLTProcessor::parseErrorFunc(void* userData, const xmlError* error)
++#else
+ void XSLTProcessor::parseErrorFunc(void* userData, xmlError* error)
++#endif
+ {
+ PageConsole* console = static_cast<PageConsole*>(userData);
+ if (!console)
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/gtk-webkit3.git/commitdiff/41d04d5ed158939bda1f374ca96d7279d3c81572
More information about the pld-cvs-commit
mailing list