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.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/debian/patches/0002-bigendian.patch b/debian/patches/0002-bigendian.patch
deleted file mode 100644
index dcd1900..0000000
--- a/debian/patches/0002-bigendian.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-Description: prevent build-error for big-endian systems
-Author: Jörg Frings-Fürst <debian@jff-webhosting.net>
-Reviewed-by:
-Last-Update: 2014-05-18
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-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)
- {