From 7a9e9f9f1e78a085fdf60faadd83990c3ca6d18c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 4 Dec 2019 08:08:13 -0700 Subject: Fix another build failure in tui-selftests.c Christian had emailed me to say that the TUI unit test broke the mingw build, but I erroneously thought this was fixed by the earlier patch that made the test body conditional on the TUI being built. However, I was wrong about this -- tui-selftests.c unconditionally includes tui-winsource.h, which fails if curses is not available. This patch fixes the build problem by moving this include into the "#ifdef TUI" section. Tested by rebuilding a mingw-hosted gdb. gdb/ChangeLog 2019-12-04 Tom Tromey * unittests/tui-selftests.c: Conditionally include tui-winsource.h. Change-Id: If608649ef5cbef8ea92192e11c53379742967ee7 --- gdb/unittests/tui-selftests.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdb/unittests') diff --git a/gdb/unittests/tui-selftests.c b/gdb/unittests/tui-selftests.c index 95c12e3..03969ea 100644 --- a/gdb/unittests/tui-selftests.c +++ b/gdb/unittests/tui-selftests.c @@ -19,10 +19,11 @@ #include "defs.h" #include "gdbsupport/selftest.h" -#include "tui/tui-winsource.h" #ifdef TUI +#include "tui/tui-winsource.h" + namespace selftests { namespace tui { -- cgit v1.1