summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-01-24 15:25:11 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-01-24 15:25:11 +0000
commit3c62ff454a5022eb7610b2b98f59366289183890 (patch)
tree2b2c88511b83ebbe4cc66d8fa6e441a2a9c7a3bd
parentf0303a44b55ddfbb4232ff7a1178dfc458a8ba23 (diff)
downloadglib-3c62ff454a5022eb7610b2b98f59366289183890.tar.gz
Use UTF-16LE as target encoding on all little-endian systems. (#143380,
2006-01-24 Matthias Clasen <mclasen@redhat.com> * tests/unicode-encoding.c: Use UTF-16LE as target encoding on all little-endian systems. (#143380, Marc Moorcroft)
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-2-105
-rw-r--r--ChangeLog.pre-2-125
-rw-r--r--tests/unicode-encoding.c2
4 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 479202b0a..c6c5cff84 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-24 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/unicode-encoding.c: Use UTF-16LE as target encoding
+ on all little-endian systems. (#143380, Marc Moorcroft)
+
2006-01-23 Matthias Clasen <mclasen@redhat.com>
* configure.in: Change the shared libary extension for hpux-ia64
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 479202b0a..c6c5cff84 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,8 @@
+2006-01-24 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/unicode-encoding.c: Use UTF-16LE as target encoding
+ on all little-endian systems. (#143380, Marc Moorcroft)
+
2006-01-23 Matthias Clasen <mclasen@redhat.com>
* configure.in: Change the shared libary extension for hpux-ia64
diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12
index 479202b0a..c6c5cff84 100644
--- a/ChangeLog.pre-2-12
+++ b/ChangeLog.pre-2-12
@@ -1,3 +1,8 @@
+2006-01-24 Matthias Clasen <mclasen@redhat.com>
+
+ * tests/unicode-encoding.c: Use UTF-16LE as target encoding
+ on all little-endian systems. (#143380, Marc Moorcroft)
+
2006-01-23 Matthias Clasen <mclasen@redhat.com>
* configure.in: Change the shared libary extension for hpux-ia64
diff --git a/tests/unicode-encoding.c b/tests/unicode-encoding.c
index ac3a31489..09b339297 100644
--- a/tests/unicode-encoding.c
+++ b/tests/unicode-encoding.c
@@ -195,7 +195,7 @@ process (gint line,
gint n_chars;
gchar *utf8_result;
-#ifdef G_PLATFORM_WIN32
+#if G_BYTE_ORDER == G_LITTLE_ENDIAN
#define TARGET "UTF-16LE"
#else
#define TARGET "UTF-16"