summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-09-06 21:02:51 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-09-06 21:02:51 +0000
commita326fc5c63578cbd3feb85452790cb3a90f3bd88 (patch)
tree16969c83b285b7fd181f9690e17fdcd0076b8893 /dev-libs/libxslt/files
parentVersion bumped and closing bugs #103391 and #104020. (diff)
downloadhistorical-a326fc5c63578cbd3feb85452790cb3a90f3bd88.tar.gz
historical-a326fc5c63578cbd3feb85452790cb3a90f3bd88.tar.bz2
historical-a326fc5c63578cbd3feb85452790cb3a90f3bd88.zip
New release: 1.1.15. Removing old ebuild/patch.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'dev-libs/libxslt/files')
-rw-r--r--dev-libs/libxslt/files/digest-libxslt-1.1.141
-rw-r--r--dev-libs/libxslt/files/digest-libxslt-1.1.151
-rw-r--r--dev-libs/libxslt/files/libxslt-1.1.13-xslt.patch25
3 files changed, 1 insertions, 26 deletions
diff --git a/dev-libs/libxslt/files/digest-libxslt-1.1.14 b/dev-libs/libxslt/files/digest-libxslt-1.1.14
deleted file mode 100644
index 5f700fc79e0a..000000000000
--- a/dev-libs/libxslt/files/digest-libxslt-1.1.14
+++ /dev/null
@@ -1 +0,0 @@
-MD5 1fe60d57b8fcff7462fb1d9fac6c2ae8 libxslt-1.1.14.tar.bz2 1819250
diff --git a/dev-libs/libxslt/files/digest-libxslt-1.1.15 b/dev-libs/libxslt/files/digest-libxslt-1.1.15
new file mode 100644
index 000000000000..db80a14b5700
--- /dev/null
+++ b/dev-libs/libxslt/files/digest-libxslt-1.1.15
@@ -0,0 +1 @@
+MD5 0a48d1a723d5338b246702ab1769e7bf libxslt-1.1.15.tar.bz2 1822862
diff --git a/dev-libs/libxslt/files/libxslt-1.1.13-xslt.patch b/dev-libs/libxslt/files/libxslt-1.1.13-xslt.patch
deleted file mode 100644
index 65a8682526b6..000000000000
--- a/dev-libs/libxslt/files/libxslt-1.1.13-xslt.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff -ur libxslt-1.1.13/libxslt/xslt.c libxslt-1.1.13-patched/libxslt/xslt.c
---- libxslt-1.1.13/libxslt/xslt.c 2005-01-23 04:58:02.000000000 +0800
-+++ libxslt-1.1.13-patched/libxslt/xslt.c 2005-03-25 09:48:03.705023480 +0800
-@@ -1534,14 +1534,17 @@
- while (text != NULL) {
- if ((text->content != NULL) &&
- (!xmlDictOwns(style->dict, text->content))) {
-- xmlChar *old = (xmlChar *) text->content;
-
- /*
- * internalize the text string
- */
-- text->content = (xmlChar *)
-- xmlDictLookup(style->dict, old, -1);
-- xmlFree(old);
-+ if (text->doc->dict != NULL) {
-+ xmlChar *old = (xmlChar *) text->content;
-+ text->content =
-+ (xmlChar *) xmlDictLookup(
-+ text->doc->dict, old, -1);
-+ xmlFree(old);
-+ }
- }
-
- next = text->next;