Needs I think:
--- a/src/wraplibxml.cpp
+++ b/src/wraplibxml.cpp
@@ -706,7 +706,7 @@
wxString WrapLibxml::getLastError()
{
- xmlErrorPtr err = xmlGetLastError();
+ const xmlError *err = xmlGetLastError();
if ( !err )
return nonParserError;
@@ -722,7 +722,7 @@
std::pair<int, int> WrapLibxml::getErrorPosition()
{
- xmlErrorPtr err = xmlGetLastError();
+ const xmlError *err = xmlGetLastError();
if ( !err )
return std::make_pair ( 1, 1 );
Patch works for me with libxml2 2.13.4-1 on ArchLinux.
Hi there! Do you have any planned release date? Thanks!
Apologies! Let me try to handle that.
On Thu, Jan 9, 2025 at 10:29 mgscat marcgarsan@users.sourceforge.net
wrote:
Related
Bugs: #239
FreeBSD ports:
Successfully aplied patch above in https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=284272
Builds with libxml2 2.13.5 (and libxslt 1.1.42)
Thanks