summaryrefslogtreecommitdiff
path: root/debian/patches/0002-bigendian.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0002-bigendian.patch')
-rw-r--r--debian/patches/0002-bigendian.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/patches/0002-bigendian.patch b/debian/patches/0002-bigendian.patch
new file mode 100644
index 0000000..a0c2f51
--- /dev/null
+++ b/debian/patches/0002-bigendian.patch
@@ -0,0 +1,26 @@
+Index: trunk/xsd/tests/cxx/tree/encoding/char/utf-8/driver.cxx
+===================================================================
+--- trunk.orig/xsd/tests/cxx/tree/encoding/char/utf-8/driver.cxx 2010-04-28 08:58:09.000000000 +0200
++++ trunk/xsd/tests/cxx/tree/encoding/char/utf-8/driver.cxx 2014-05-18 12:03:06.243944878 +0200
+@@ -57,7 +57,7 @@
+ xml_schema::namespace_infomap map;
+ map["t"].name = "test";
+
+- root (std::cout, *r, map, "UCS-4LE");
++ root (std::cout, *r, map, "ASCII");
+ }
+ catch (xml_schema::exception const& e)
+ {
+Index: trunk/xsd/tests/cxx/tree/encoding/wchar/driver.cxx
+===================================================================
+--- trunk.orig/xsd/tests/cxx/tree/encoding/wchar/driver.cxx 2010-04-28 08:58:09.000000000 +0200
++++ trunk/xsd/tests/cxx/tree/encoding/wchar/driver.cxx 2014-05-18 12:03:33.164482484 +0200
+@@ -47,7 +47,7 @@
+ xml_schema::namespace_infomap map;
+ map[L"t"].name = L"test";
+
+- root (std::cout, *r, map, L"UCS-4LE");
++ root (std::cout, *r, map, L"ASCII");
+ }
+ catch (xml_schema::exception const& e)
+ {