gdb/python: Fix --disable-tui build
authorKévin Le Gouguec <legouguec@adacore.com>
Wed, 22 Feb 2023 12:37:06 +0000 (13:37 +0100)
committerKévin Le Gouguec <legouguec@adacore.com>
Mon, 6 Mar 2023 16:31:57 +0000 (17:31 +0100)
As of 2023-02-13 "gdb/python: deallocate tui window factories at Python
shut down" (9ae4519da90), a TUI-less build fails with:

$src/gdb/python/py-tui.c: In function ‘void gdbpy_finalize_tui()’:
$src/gdb/python/py-tui.c:621:3: error: ‘gdbpy_tui_window_maker’ has not been declared
  621 |   gdbpy_tui_window_maker::invalidate_all ();
      |   ^~~~~~~~~~~~~~~~~~~~~~

Since gdbpy_tui_window_maker is only defined under #ifdef TUI, add an
#ifdef guard in gdbpy_finalize_tui as well.

gdb/python/py-tui.c

index 9ce766590528d82e2dce4a4daf99b3c7ae146174..92fa0591e5c3b8270b22ed6809a6b6ae06a8d4d7 100644 (file)
@@ -618,5 +618,7 @@ gdbpy_initialize_tui ()
 void
 gdbpy_finalize_tui ()
 {
+#ifdef TUI
   gdbpy_tui_window_maker::invalidate_all ();
+#endif /* TUI */
 }