diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-08-07 22:12:08 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-08-07 22:12:08 +0000 |
commit | 5c7f2947f03e47cdb458c8f132ed5e2f7ab7a940 (patch) | |
tree | 53286d327a13286956984a696ae9026b92d9ae47 /gdb/configure.in | |
parent | da7d81e3861d91b055a4bc75a5d1372f0c025e36 (diff) | |
download | fsf-binutils-gdb-5c7f2947f03e47cdb458c8f132ed5e2f7ab7a940.zip fsf-binutils-gdb-5c7f2947f03e47cdb458c8f132ed5e2f7ab7a940.tar.gz fsf-binutils-gdb-5c7f2947f03e47cdb458c8f132ed5e2f7ab7a940.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 6eac761..2392617 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -374,7 +374,7 @@ fi # do anything to look for the matching include files. # -- 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])]) # Check whether the wborder function is provided by the curses @@ -429,7 +429,7 @@ case $host_os in Solaris 2.[789] when using GCC. ]]) fi ;; 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 # unconditionally, so what's the point in checking these? |