summaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-02-24 13:42:51 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-07-07 17:41:58 +0200
commit88da3bbecc26f94da2087e1ef137a8898d4755ea (patch)
treeb389ede1fe9398e8698cfd7aea7d2f269aa57d10 /external
parent1a4baa97d1ac55d952c171c082b525e038cd6053 (diff)
libxmlsec: remove no longer needed xmlsec1-olderlibxml2.patch
I assume this was needed for the Linux baseline. CentOS 6 has libxml 2.7.6, patch is needed for < 2.7.4. (CentOS 5 had 2.6.26, that is only used on libreoffice-5-0). Change-Id: Iae2edbf4f0d484944e399bd901d35a8260272700 Reviewed-on: https://gerrit.libreoffice.org/22659 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Jenkins <ci@libreoffice.org> (cherry picked from commit 6851e977f71075c2f43b967a52dc1d035a75b0f2)
Diffstat (limited to 'external')
-rw-r--r--external/libxmlsec/UnpackedTarball_xmlsec.mk1
-rw-r--r--external/libxmlsec/xmlsec1-olderlibxml2.patch23
2 files changed, 0 insertions, 24 deletions
diff --git a/external/libxmlsec/UnpackedTarball_xmlsec.mk b/external/libxmlsec/UnpackedTarball_xmlsec.mk
index 18a93084f87f..8492b7a392b2 100644
--- a/external/libxmlsec/UnpackedTarball_xmlsec.mk
+++ b/external/libxmlsec/UnpackedTarball_xmlsec.mk
@@ -14,7 +14,6 @@ $(eval $(call gb_UnpackedTarball_set_tarball,xmlsec,$(LIBXMLSEC_TARBALL),,libxml
$(eval $(call gb_UnpackedTarball_add_patches,xmlsec,\
external/libxmlsec/xmlsec1-configure.patch \
external/libxmlsec/xmlsec1-configure-libxml-libxslt.patch \
- external/libxmlsec/xmlsec1-olderlibxml2.patch \
external/libxmlsec/xmlsec1-oldlibtool.patch \
external/libxmlsec/xmlsec1-nssdisablecallbacks.patch \
external/libxmlsec/xmlsec1-nssmangleciphers.patch \
diff --git a/external/libxmlsec/xmlsec1-olderlibxml2.patch b/external/libxmlsec/xmlsec1-olderlibxml2.patch
deleted file mode 100644
index f2bd85f5113b..000000000000
--- a/external/libxmlsec/xmlsec1-olderlibxml2.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- misc/xmlsec1-1.2.14/src/c14n.c 2010-03-02 15:46:05.000000000 +0000
-+++ misc/build/xmlsec1-1.2.14/src/c14n.c 2010-03-02 15:50:35.000000000 +0000
-@@ -406,6 +406,20 @@
- return(0);
- }
-
-+#if !defined(LIBXML_VERSION) || LIBXML_VERSION < 20704
-+/*
-+ * xmlC14NMode:
-+ *
-+ * Predefined values for C14N modes
-+ *
-+ */
-+typedef enum {
-+ XML_C14N_1_0 = 0, /* Origianal C14N 1.0 spec */
-+ XML_C14N_EXCLUSIVE_1_0 = 1, /* Exclusive C14N 1.0 spec */
-+ XML_C14N_1_1 = 2 /* C14N 1.1 spec */
-+} xmlC14NMode;
-+#endif
-+
- static int
- xmlSecTransformC14NExecute(xmlSecTransformId id, xmlSecNodeSetPtr nodes, xmlChar** nsList,
- xmlOutputBufferPtr buf) {