eb93c7f2907a67c32bedcdec32c95e8e2ddcd2b0
[openwrt/staging/stintel.git] / package / devel / gdb / patches / 001-Add-support-for-readline-8.2.patch
1 From 1add37b567a7dee39d99f37b37802034c3fce9c4 Mon Sep 17 00:00:00 2001
2 From: Andreas Schwab <schwab@linux-m68k.org>
3 Date: Sun, 20 Mar 2022 14:01:54 +0100
4 Subject: [PATCH] Add support for readline 8.2
5
6 In readline 8.2 the type of rl_completer_word_break_characters changed to
7 include const.
8 ---
9 gdb/completer.c | 4 ++--
10 1 file changed, 2 insertions(+), 2 deletions(-)
11
12 --- a/gdb/completer.c
13 +++ b/gdb/completer.c
14 @@ -36,7 +36,7 @@
15 calling a hook instead so we eliminate the CLI dependency. */
16 #include "gdbcmd.h"
17
18 -/* Needed for rl_completer_word_break_characters() and for
19 +/* Needed for rl_completer_word_break_characters and for
20 rl_filename_completion_function. */
21 #include "readline/readline.h"
22
23 @@ -2011,7 +2011,7 @@ gdb_completion_word_break_characters_thr
24 rl_basic_quote_characters = NULL;
25 }
26
27 - return rl_completer_word_break_characters;
28 + return (char *) rl_completer_word_break_characters;
29 }
30
31 char *