aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Nagy <rnagy@FreeBSD.org>2024-02-24 20:25:30 +0000
committerRobert Nagy <rnagy@FreeBSD.org>2024-02-24 20:25:30 +0000
commitcbdd4c93d916be35e31fa9d5ef86e10d677cef87 (patch)
tree5276c79d8c15c1b79d6f7c42e0cac4dd6e9723c1
parenta71d4d63985a0b63188f9695455b77bb3c0a8ab2 (diff)
downloadports-cbdd4c93d916be35e31fa9d5ef86e10d677cef87.tar.gz
ports-cbdd4c93d916be35e31fa9d5ef86e10d677cef87.zip
www/chromium: revert to previous libxml version check
-rw-r--r--www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor.h2
-rw-r--r--www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor__libxslt.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor.h b/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor.h
index 702f8c29c936..a085ea4a2ab0 100644
--- a/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor.h
+++ b/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor.h
@@ -4,7 +4,7 @@
void reset();
-+#if (LIBXML_VERSION > 21106)
++#if (LIBXML_VERSION >= 21200)
static void ParseErrorFunc(void* user_data, const xmlError*);
+#else
+ static void ParseErrorFunc(void* user_data, xmlError*);
diff --git a/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor__libxslt.cc b/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor__libxslt.cc
index 301753e59466..9e11b5e7bdcc 100644
--- a/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor__libxslt.cc
+++ b/www/chromium/files/patch-third__party_blink_renderer_core_xml_xslt__processor__libxslt.cc
@@ -4,7 +4,7 @@
// It would be nice to do something with this error message.
}
-+#if (LIBXML_VERSION > 21106)
++#if (LIBXML_VERSION >= 21200)
void XSLTProcessor::ParseErrorFunc(void* user_data, const xmlError* error) {
+#else
+void XSLTProcessor::ParseErrorFunc(void* user_data, xmlError* error) {