summaryrefslogtreecommitdiff
path: root/textproc/libxml2/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2008-10-16 13:31:57 +0000
committerdrochner <drochner@pkgsrc.org>2008-10-16 13:31:57 +0000
commitc71cf13afdd8d2c65e73e52f4822c69033f24625 (patch)
treecb3a2f388ed10106b03c39815ac053f6e8b4ce03 /textproc/libxml2/patches
parent7e4d16feac4d6f9237da0c6d0bbabe73f5bad24c (diff)
downloadpkgsrc-c71cf13afdd8d2c65e73e52f4822c69033f24625.tar.gz
update to 2.7.2
changes: -Portability fix: fix solaris compilation problem, fix compilation if XPath is not configured in -Bug fixes: nasty entity bug introduced in 2.7.0, restore old behaviour when saving an HTML doc with an xml dump function, HTML UTF-8 parsing bug, fix reader custom error handlers -Improvement: xmlSave options for more flexibility to save as XML/HTML/XHTML, handle leading BOM in HTML documents cvs: ----------------------------------------------------------------------
Diffstat (limited to 'textproc/libxml2/patches')
-rw-r--r--textproc/libxml2/patches/patch-af21
-rw-r--r--textproc/libxml2/patches/patch-ag13
2 files changed, 0 insertions, 34 deletions
diff --git a/textproc/libxml2/patches/patch-af b/textproc/libxml2/patches/patch-af
deleted file mode 100644
index 16b3e1788e0..00000000000
--- a/textproc/libxml2/patches/patch-af
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-af,v 1.1 2008/10/09 15:01:27 tron Exp $
-
-Patch for CVE-2008-4409 taken from here:
-
-http://bugzilla.gnome.org/show_bug.cgi?id=554660
-http://bugzilla.gnome.org/attachment.cgi?id=119824
-
---- parser.c.orig 2008-09-01 07:22:40.000000000 +0100
-+++ parser.c 2008-10-09 15:22:55.000000000 +0100
-@@ -7225,8 +7225,10 @@
- * Predefined entites override any extra definition
- */
- ent = xmlGetPredefinedEntity(name);
-- if (ent != NULL)
-+ if (ent != NULL) {
-+ *str = ptr;
- return(ent);
-+ }
-
- /*
- * Increate the number of entity references parsed
diff --git a/textproc/libxml2/patches/patch-ag b/textproc/libxml2/patches/patch-ag
deleted file mode 100644
index 3c6aa9c1ad5..00000000000
--- a/textproc/libxml2/patches/patch-ag
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ag,v 1.3 2008/10/13 10:31:24 sketch Exp $
-
---- dict.c.orig 2008-10-13 11:19:44.000000000 +0100
-+++ dict.c 2008-10-13 11:20:27.000000000 +0100
-@@ -22,6 +22,8 @@
- #include <string.h>
- #ifdef HAVE_STDINT_H
- #include <stdint.h>
-+#elif HAVE_INTTYPES_H
-+#include <inttypes.h>
- #elif defined(WIN32)
- typedef unsigned __int32 uint32_t;
- #endif