summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2010-05-16 14:31:57 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2010-05-16 14:31:57 (GMT)
commitb1eb2bd5126bc750e4490e9e04c7ce9994d45891 (patch)
treee6d29b333fba6eea3138ea21e294f3bd14318b21
parentd040f47603b3c280a5bf020ce7155793b88ffe61 (diff)
downloadmxe-b1eb2bd5126bc750e4490e9e04c7ce9994d45891.zip
mxe-b1eb2bd5126bc750e4490e9e04c7ce9994d45891.tar.gz
mxe-b1eb2bd5126bc750e4490e9e04c7ce9994d45891.tar.bz2
remove duplicate patch for package glib
-rw-r--r--src/glib-3-avoid-lc-messages.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/glib-3-avoid-lc-messages.patch b/src/glib-3-avoid-lc-messages.patch
deleted file mode 100644
index 45a2191..0000000
--- a/src/glib-3-avoid-lc-messages.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-This file is part of mingw-cross-env.
-See doc/index.html for further information.
-
-diff -r f084585629df gio/gsettings.c
---- a/gio/gsettings.c Tue Apr 27 23:13:34 2010 +0200
-+++ b/gio/gsettings.c Tue Apr 27 23:17:47 2010 +0200
-@@ -782,16 +782,13 @@
- const gchar *translated;
- GError *error = NULL;
- const gchar *domain;
-- gint lc_category;
-
- domain = g_settings_schema_get_gettext_domain (settings->priv->schema);
-
- if (lc_char == 't')
-- lc_category = LC_TIME;
-+ translated = dcgettext (domain, unparsed, LC_TIME);
- else
-- lc_category = LC_MESSAGES;
--
-- translated = dcgettext (domain, unparsed, lc_category);
-+ translated = dgettext (domain, unparsed);
-
- if (translated != unparsed)
- /* it was translated, so we need to re-parse it */