Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorRodrigo Kumpera <kumpera@gmail.com>2012-10-24 21:39:59 +0400
committerRodrigo Kumpera <kumpera@gmail.com>2012-10-24 21:39:59 +0400
commit79353d0abbf21d85e174158e0185c0c72b7424ea (patch)
tree78c5ede147306bc525d98d63557e3f409e1c6bf9 /eglib
parent32fbc3ab7e3c36653c29c16f0ba08bd6682ab60b (diff)
Fix the linux build as it does check even from private glib symbols.
Diffstat (limited to 'eglib')
-rw-r--r--eglib/src/giconv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/eglib/src/giconv.c b/eglib/src/giconv.c
index 6fc6e06aaea..2f44336aa0b 100644
--- a/eglib/src/giconv.c
+++ b/eglib/src/giconv.c
@@ -887,7 +887,7 @@ g_utf8_to_ucs4_fast (const gchar *str, glong len, glong *items_written)
}
static gunichar2 *
-g_utf8_to_utf16_general (const gchar *str, glong len, glong *items_read, glong *items_written, gboolean include_nuls, GError **err)
+eg_utf8_to_utf16_general (const gchar *str, glong len, glong *items_read, glong *items_written, gboolean include_nuls, GError **err)
{
gunichar2 *outbuf, *outptr;
size_t outlen = 0;
@@ -966,13 +966,13 @@ g_utf8_to_utf16_general (const gchar *str, glong len, glong *items_read, glong *
gunichar2 *
g_utf8_to_utf16 (const gchar *str, glong len, glong *items_read, glong *items_written, GError **err)
{
- return g_utf8_to_utf16_general (str, len, items_read, items_written, FALSE, err);
+ return eg_utf8_to_utf16_general (str, len, items_read, items_written, FALSE, err);
}
gunichar2 *
eg_utf8_to_utf16_with_nuls (const gchar *str, glong len, glong *items_read, glong *items_written, GError **err)
{
- return g_utf8_to_utf16_general (str, len, items_read, items_written, TRUE, err);
+ return eg_utf8_to_utf16_general (str, len, items_read, items_written, TRUE, err);
}
gunichar *