mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 22:40:24 +00:00
* configure.in: Refine the previous change.
* configure: Regenerate.
This commit is contained in:
parent
2f3bf8b93e
commit
7613d9339c
@ -1,3 +1,8 @@
|
|||||||
|
2004-02-25 J. Brobecker <brobecker@gnat.com>
|
||||||
|
|
||||||
|
* configure.in: Refine the previous change.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2004-02-25 Mark Kettenis <kettenis@gnu.org>
|
2004-02-25 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
* amd64-tdep.h: Renamed from x86-64-tdep.h.
|
* amd64-tdep.h: Renamed from x86-64-tdep.h.
|
||||||
|
1002
gdb/configure
vendored
1002
gdb/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -152,9 +152,8 @@ AC_SEARCH_LIBS(initscr, [ncurses Hcurses curses pdcurses], [],
|
|||||||
# additional library. So if we did not find this function inside
|
# additional library. So if we did not find this function inside
|
||||||
# the curses library, try some alternate libraries we know might
|
# the curses library, try some alternate libraries we know might
|
||||||
# provide it.
|
# provide it.
|
||||||
AC_CHECK_FUNC(wborder, [wborder_available=yes],
|
AC_SEARCH_LIBS(wborder, [cur_colr], [],
|
||||||
[AC_SEARCH_LIBS(wborder, [cur_colr], [wborder_available=yes],
|
[AC_MSG_WARN([wborder function not found, tui will be disabled])])
|
||||||
[AC_MSG_WARN([no wborder function found])])])
|
|
||||||
|
|
||||||
# Enable TUI.
|
# Enable TUI.
|
||||||
AC_ARG_ENABLE(tui,
|
AC_ARG_ENABLE(tui,
|
||||||
@ -167,7 +166,7 @@ AC_ARG_ENABLE(tui,
|
|||||||
esac],enable_tui=yes)
|
esac],enable_tui=yes)
|
||||||
if test x"$enable_tui" = xyes; then
|
if test x"$enable_tui" = xyes; then
|
||||||
if test -d $srcdir/tui; then
|
if test -d $srcdir/tui; then
|
||||||
if test "$ac_cv_search_initscr" != no -a "$wborder_available" = "yes"; then
|
if test "$ac_cv_search_initscr" != no -a "$ac_cv_search_wborder" != no; then
|
||||||
CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
|
CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
|
||||||
CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
|
CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
|
||||||
CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
|
CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
|
||||||
|
Loading…
Reference in New Issue
Block a user