From 66182876b46d40163e81504f7fa4f206268cb83c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 6 Jan 2020 21:54:21 +0200 Subject: [PATCH] Fix MinGW native compilation of gdb/gdbsupport/gdb_wait.c gdb/ChangeLog 2020-01-06 Eli Zaretskii * gdbsupport/gdb_wait.c: Include instead of gdb/signals.h, as we are now using native signal symbols. --- gdb/ChangeLog | 5 +++++ gdb/gdbsupport/gdb_wait.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 476712e6cb..521d101029 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2020-01-06 Eli Zaretskii + + * gdbsupport/gdb_wait.c: Include instead of + gdb/signals.h, as we are now using native signal symbols. + 2020-01-06 Shahab Vahedi * tui/tui-disasm.c (tui_disasm_window::addr_is_displayed): Avoid diff --git a/gdb/gdbsupport/gdb_wait.c b/gdb/gdbsupport/gdb_wait.c index 037ba643db..6facc48495 100644 --- a/gdb/gdbsupport/gdb_wait.c +++ b/gdb/gdbsupport/gdb_wait.c @@ -34,7 +34,7 @@ false positives is justified by the utility of reporting the terminating signal in the "normal" cases. */ -# include "gdb/signals.h" /* for enum gdb_signal */ +# include # define WIN32_LEAN_AND_MEAN # include /* for EXCEPTION_* constants */ -- 2.34.1