* configure.in: Add cursesX to the list of possible curses libs.
Add cursesX.h to the list of possible curses headers. * configure, config.in: Regenerate.
This commit is contained in:
parent
da7d81e386
commit
5c7f2947f0
4 changed files with 241 additions and 194 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2004-08-08 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* configure.in: Add cursesX to the list of possible curses libs.
|
||||||
|
Add cursesX.h to the list of possible curses headers.
|
||||||
|
* configure, config.in: Regenerate.
|
||||||
|
|
||||||
2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
|
2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
|
||||||
|
|
||||||
* configure.in: Test for struct lwp in <sys/lwp.h>.
|
* configure.in: Test for struct lwp in <sys/lwp.h>.
|
||||||
|
|
|
@ -269,6 +269,9 @@
|
||||||
/* Define if you have the <curses.h> header file. */
|
/* Define if you have the <curses.h> header file. */
|
||||||
#undef HAVE_CURSES_H
|
#undef HAVE_CURSES_H
|
||||||
|
|
||||||
|
/* Define if you have the <cursesX.h> header file. */
|
||||||
|
#undef HAVE_CURSESX_H
|
||||||
|
|
||||||
/* Define if you have the <dirent.h> header file. */
|
/* Define if you have the <dirent.h> header file. */
|
||||||
#undef HAVE_DIRENT_H
|
#undef HAVE_DIRENT_H
|
||||||
|
|
||||||
|
@ -465,6 +468,9 @@
|
||||||
/* Define to 1 if your system has td_pcb in struct thread. */
|
/* Define to 1 if your system has td_pcb in struct thread. */
|
||||||
#undef HAVE_STRUCT_THREAD_TD_PCB
|
#undef HAVE_STRUCT_THREAD_TD_PCB
|
||||||
|
|
||||||
|
/* Define to 1 if your system has struct lwp. */
|
||||||
|
#undef HAVE_STRUCT_LWP
|
||||||
|
|
||||||
/* Define to 1 if your system has struct reg in <machine/reg.h>. */
|
/* Define to 1 if your system has struct reg in <machine/reg.h>. */
|
||||||
#undef HAVE_STRUCT_REG
|
#undef HAVE_STRUCT_REG
|
||||||
|
|
||||||
|
|
419
gdb/configure
vendored
419
gdb/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -374,7 +374,7 @@ fi
|
||||||
# do anything to look for the matching include files.
|
# do anything to look for the matching include files.
|
||||||
# -- chastain 2004-05-01
|
# -- chastain 2004-05-01
|
||||||
|
|
||||||
AC_SEARCH_LIBS(initscr, [ncurses Hcurses curses pdcurses], [],
|
AC_SEARCH_LIBS(initscr, [ncurses Hcurses cursesX curses pdcurses], [],
|
||||||
[AC_MSG_WARN([no curses library found])])
|
[AC_MSG_WARN([no curses library found])])
|
||||||
|
|
||||||
# Check whether the wborder function is provided by the curses
|
# Check whether the wborder function is provided by the curses
|
||||||
|
@ -429,7 +429,7 @@ case $host_os in
|
||||||
Solaris 2.[789] when using GCC. ]])
|
Solaris 2.[789] when using GCC. ]])
|
||||||
fi ;;
|
fi ;;
|
||||||
esac
|
esac
|
||||||
AC_CHECK_HEADERS(curses.h ncurses.h term.h)
|
AC_CHECK_HEADERS(curses.h cursesX.h ncurses.h term.h)
|
||||||
|
|
||||||
# FIXME: kettenis/20030102: In most cases we include these
|
# FIXME: kettenis/20030102: In most cases we include these
|
||||||
# unconditionally, so what's the point in checking these?
|
# unconditionally, so what's the point in checking these?
|
||||||
|
|
Loading…
Add table
Reference in a new issue