diff options
author | Tom Tromey <tom@tromey.com> | 2021-01-23 10:11:30 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-02-06 11:20:46 -0700 |
commit | 4cbf332613a833e214e825817093b945c6a38bbd (patch) | |
tree | eebb23947aa3c5a525bc09cef8cf3853207151e0 | |
parent | d255005f2121d29581170a8f5b89f63c339c593e (diff) | |
download | gdb-4cbf332613a833e214e825817093b945c6a38bbd.zip gdb-4cbf332613a833e214e825817093b945c6a38bbd.tar.gz gdb-4cbf332613a833e214e825817093b945c6a38bbd.tar.bz2 |
Fix Readline 8.1 build on mingwusers/tromey/readline-8.1-update
The mingw build fails with Readline 8.1, because sigprocmask is called
unconditionally. This patch adds the missing check for
HAVE_POSIX_SIGNALS.
I reported this upstream here:
https://lists.gnu.org/archive/html/bug-readline/2021-01/msg00011.html
2021-02-06 Tom Tromey <tom@tromey.com>
* readline/signals.c (_rl_handle_signal): Add missing check for
HAVE_POSIX_SIGNALS.
-rw-r--r-- | readline/ChangeLog | 5 | ||||
-rw-r--r-- | readline/readline/signals.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/readline/ChangeLog b/readline/ChangeLog index a8a1faf..c906062 100644 --- a/readline/ChangeLog +++ b/readline/ChangeLog @@ -1,5 +1,10 @@ 2021-02-06 Tom Tromey <tom@tromey.com> + * readline/signals.c (_rl_handle_signal): Add missing check for + HAVE_POSIX_SIGNALS. + +2021-02-06 Tom Tromey <tom@tromey.com> + * Import readline 8.1. 2020-06-30 Tom Tromey <tom@tromey.com> diff --git a/readline/readline/signals.c b/readline/readline/signals.c index f9174ab8a..8fedc37 100644 --- a/readline/readline/signals.c +++ b/readline/readline/signals.c @@ -266,8 +266,10 @@ _rl_handle_signal (int sig) case SIGQUIT: #endif +#if defined (HAVE_POSIX_SIGNALS) if (block_sig) sigprocmask (SIG_BLOCK, &set, &oset); +#endif rl_echo_signal_char (sig); rl_cleanup_after_signal (); |