summaryrefslogtreecommitdiffstats
path: root/x11-libs/gtk+/files/gtk+-1.2-locale_fix.patch
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2019-09-02 05:23:45 +0200
committerSuren A. Chilingaryan <csa@suren.me>2019-09-02 05:23:45 +0200
commit576b6208d6defe240bfa2477d6dd19f1ed83bfaf (patch)
tree7d54883f16cccc4cbd414398d7fec3c437b36b49 /x11-libs/gtk+/files/gtk+-1.2-locale_fix.patch
parentfdd6b67a78a966f6a2131de8fe0e539316511083 (diff)
downloaddarklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.gz
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.bz2
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.tar.xz
darklin4-576b6208d6defe240bfa2477d6dd19f1ed83bfaf.zip
Cleaned most of outdated stuff
Diffstat (limited to 'x11-libs/gtk+/files/gtk+-1.2-locale_fix.patch')
-rw-r--r--x11-libs/gtk+/files/gtk+-1.2-locale_fix.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/x11-libs/gtk+/files/gtk+-1.2-locale_fix.patch b/x11-libs/gtk+/files/gtk+-1.2-locale_fix.patch
deleted file mode 100644
index a3fd198..0000000
--- a/x11-libs/gtk+/files/gtk+-1.2-locale_fix.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- gtk/gtkrc.c.~1.40.2.17.~ 2001-07-10 20:06:35.000000000 +0200
-+++ gtk/gtkrc.c 2003-03-05 16:56:10.000000000 +0100
-@@ -453,7 +453,7 @@
-
- if (!initted)
- {
-- char *locale = setlocale (LC_CTYPE, NULL);
-+ char *locale = g_strdup (setlocale (LC_CTYPE, NULL));
- char *p;
-
- initted = TRUE;
-@@ -558,6 +558,7 @@
-
- if (tmp) g_free (tmp);
- }
-+ g_free (locale);
- }
-
- i = 0;