Browse Source
- explicitly #include <libxml/tree.h>, probably from <libxml/SAX.h> before - account for changed xmlStructuredErrorFunc typedef in <libxml/xmlerror.h> While here, cosmetic ordering and fix gtk-doc typo; bump PORTREVISION for that. PR: 279705 Co-authored-by: vvdoverlay

4 changed files with 46 additions and 22 deletions
@ -1,3 +1,3 @@ |
|||
TIMESTAMP = 1583164702 |
|||
SHA256 (gnome2/librsvg-2.40.21.tar.xz) = f7628905f1cada84e87e2b14883ed57d8094dca3281d5bcb24ece4279e9a92ba |
|||
SIZE (gnome2/librsvg-2.40.21.tar.xz) = 1655860 |
|||
TIMESTAMP = 1750895954 |
|||
SHA256 (gnome/librsvg-2.40.21.tar.xz) = f7628905f1cada84e87e2b14883ed57d8094dca3281d5bcb24ece4279e9a92ba |
|||
SIZE (gnome/librsvg-2.40.21.tar.xz) = 1655860 |
|||
|
@ -0,0 +1,14 @@ |
|||
--- rsvg-css.c.orig 2018-10-01 22:50:22 UTC |
|||
+++ rsvg-css.c |
|||
@@ -839,7 +839,11 @@ static void |
|||
} |
|||
|
|||
static void |
|||
+#if LIBXML_VERSION < 21200 |
|||
rsvg_xml_noerror (void *data, xmlErrorPtr error) |
|||
+#else |
|||
+rsvg_xml_noerror (void *data, const xmlError *error) |
|||
+#endif |
|||
{ |
|||
} |
|||
|
@ -0,0 +1,10 @@ |
|||
--- rsvg-private.h.orig 2020-02-26 17:40:25 UTC |
|||
+++ rsvg-private.h |
|||
@@ -32,6 +32,7 @@ |
|||
#include "rsvg.h" |
|||
|
|||
#include <libxml/SAX.h> |
|||
+#include <libxml/tree.h> |
|||
#include <libxml/xmlmemory.h> |
|||
#include <pango/pango.h> |
|||
#include <glib.h> |
Loading…
Reference in new issue