summaryrefslogtreecommitdiff
path: root/package/mc/patches/patch-lib_tty_tty-ncurses_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-02-12 15:38:02 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-02-12 15:38:02 +0100
commitb0737882e275d23a9ee0909830a75900c0d916c0 (patch)
treeab63d01d12dd6ba99aa7983d092003cd38e770b5 /package/mc/patches/patch-lib_tty_tty-ncurses_c
parent7bae0bafa415b79ad56a00043fdd18df49a5788a (diff)
fix musl compile, update to latest stable upstream version
Diffstat (limited to 'package/mc/patches/patch-lib_tty_tty-ncurses_c')
-rw-r--r--package/mc/patches/patch-lib_tty_tty-ncurses_c27
1 files changed, 27 insertions, 0 deletions
diff --git a/package/mc/patches/patch-lib_tty_tty-ncurses_c b/package/mc/patches/patch-lib_tty_tty-ncurses_c
new file mode 100644
index 000000000..5058bd79e
--- /dev/null
+++ b/package/mc/patches/patch-lib_tty_tty-ncurses_c
@@ -0,0 +1,27 @@
+--- mc-4.8.11.orig/lib/tty/tty-ncurses.c 2013-11-29 19:27:07.000000000 +0100
++++ mc-4.8.11/lib/tty/tty-ncurses.c 2014-02-12 12:40:05.000000000 +0100
+@@ -65,7 +65,7 @@
+
+ /*** file scope macro definitions ****************************************************************/
+
+-#if defined(_AIX) && !defined(CTRL)
++#if !defined(CTRL)
+ #define CTRL(x) ((x) & 0x1f)
+ #endif
+
+@@ -530,6 +530,7 @@ tty_print_anychar (int c)
+ if (mc_global.utf8_display || c > 255)
+ {
+ int res;
++ unsigned char str[UTF8_CHAR_LEN + 1];
+
+ res = g_unichar_to_utf8 (c, (char *) str);
+ if (res == 0)
+@@ -540,7 +541,6 @@ tty_print_anychar (int c)
+ }
+ else
+ {
+- unsigned char str[UTF8_CHAR_LEN + 1];
+ const char *s;
+
+ str[res] = '\0';