diff options
author | Chris Mayo <aklhfex@gmail.com> | 2024-05-09 19:50:20 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2024-05-13 09:49:06 +0300 |
commit | e41b2bfc76e943bf53df3e23abdf3257df00a674 (patch) | |
tree | 0f699876bd7d5a4e62e203954f4e1f730ecd387b /app-editors/xmlcopyeditor/files | |
parent | www-client/firefox: support aarch64-unknown-linux-musl (diff) | |
download | gentoo-e41b2bfc76e943bf53df3e23abdf3257df00a674.tar.gz gentoo-e41b2bfc76e943bf53df3e23abdf3257df00a674.tar.bz2 gentoo-e41b2bfc76e943bf53df3e23abdf3257df00a674.zip |
app-editors/xmlcopyeditor: fix dependencies
Closes: https://bugs.gentoo.org/923446
Signed-off-by: Chris Mayo <aklhfex@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35918
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-editors/xmlcopyeditor/files')
-rw-r--r-- | app-editors/xmlcopyeditor/files/xmlcopyeditor-1.3.1.0-libxml2-2.12.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app-editors/xmlcopyeditor/files/xmlcopyeditor-1.3.1.0-libxml2-2.12.patch b/app-editors/xmlcopyeditor/files/xmlcopyeditor-1.3.1.0-libxml2-2.12.patch new file mode 100644 index 000000000000..c3036584524c --- /dev/null +++ b/app-editors/xmlcopyeditor/files/xmlcopyeditor-1.3.1.0-libxml2-2.12.patch @@ -0,0 +1,20 @@ +--- 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 );
+
|