diff options
author | Vladimir Glazunov <vg@openoffice.org> | 2010-05-28 09:07:07 +0200 |
---|---|---|
committer | Vladimir Glazunov <vg@openoffice.org> | 2010-05-28 09:07:07 +0200 |
commit | 8c29919ec8428c9cbb2a1c8a7dad4dfcd232af5c (patch) | |
tree | 0607a3b39400361945454a4c47571e42ab87533a /libxmlsec/xmlsec1-olderlibxml2.patch | |
parent | 2424f73193fe76d35822c78d897cb260721a9757 (diff) | |
parent | 1b5a253cc1ee85089bea3ccdb8159a54185ae97a (diff) |
CWS-TOOLING: integrate CWS xmlsec1_2_14
Notes
Notes:
split repo tag: libs-extern_ooo/DEV300_m80
Diffstat (limited to 'libxmlsec/xmlsec1-olderlibxml2.patch')
-rw-r--r-- | libxmlsec/xmlsec1-olderlibxml2.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libxmlsec/xmlsec1-olderlibxml2.patch b/libxmlsec/xmlsec1-olderlibxml2.patch new file mode 100644 index 000000000000..b5f3d5747586 --- /dev/null +++ b/libxmlsec/xmlsec1-olderlibxml2.patch @@ -0,0 +1,23 @@ +--- 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 < 20706 ++/* ++ * 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) { |