Include --with-guile in 'show configuration's output.
* top.c (print_gdb_configuration) [HAVE_GUILE]: Print --with-guile or --without-guile, according to how GDB was built.
This commit is contained in:
parent
05629c769a
commit
97d66cc602
2 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-06-14 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* top.c (print_gdb_configuration) [HAVE_GUILE]: Print --with-guile
|
||||
or --without-guile, according to how GDB was built.
|
||||
|
||||
2014-06-13 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* cp-support.c (maint_cplus_command): Pass all_commands, not -1,
|
||||
|
|
|
@ -1188,6 +1188,15 @@ This GDB was configured as follows:\n\
|
|||
--with-python=%s%s\n\
|
||||
"), WITH_PYTHON_PATH, PYTHON_PATH_RELOCATABLE ? " (relocatable)" : "");
|
||||
#endif
|
||||
#if HAVE_GUILE
|
||||
fprintf_filtered (stream, _("\
|
||||
--with-guile\n\
|
||||
"));
|
||||
#else
|
||||
fprintf_filtered (stream, _("\
|
||||
--without-guile\n\
|
||||
"));
|
||||
#endif
|
||||
#ifdef RELOC_SRCDIR
|
||||
fprintf_filtered (stream, _("\
|
||||
--with-relocated-sources=%s\n\
|
||||
|
|
Loading…
Reference in a new issue