mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-21 00:01:26 +01:00
unposted: argh
This commit is contained in:
parent
2214554d8e
commit
4a49b78a0f
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
2007-12-07 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 24172: configure.ac: check ncurses.h, ncurses/ncurses.h, and
|
||||
* 24172 (tweaked): configure.ac: check ncurses.h, ncurses/ncurses.h, and
|
||||
ncursesw/ncurses.h for curses keys.
|
||||
|
||||
* 24171: Src/Modules/terminfo.c: define USE_TERMINFO_MODULE when
|
||||
|
|
|
@ -1392,7 +1392,7 @@ AC_CACHE_CHECK(where curses key definitions are located, zsh_cv_path_curses_keys
|
|||
dnl if we can.
|
||||
if test x$ac_cv_header_ncurses_h = xyes; then
|
||||
echo "#include <ncurses.h>" >nametmp.c
|
||||
elif test x$ac_cv_header_ncurses_ncurses_h = xyes
|
||||
elif test x$ac_cv_header_ncurses_ncurses_h = xyes; then
|
||||
echo "#include <ncurses/ncurses.h>" >nametmp.c
|
||||
elif test x$ac_cv_header_ncursesw_ncurses_h = xyes; then
|
||||
echo "#include <ncursesw/ncurses.h>" >nametmp.c
|
||||
|
|
Loading…
Reference in a new issue