diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2007-12-07 00:11:44 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2007-12-07 00:11:44 +0000 |
| commit | 14121f3d42a6791ad4ee3bd34ad5a72118e24cb6 (patch) | |
| tree | 0784ac8b327b197b6988daf53ab31e9f4476ca69 /Src/Modules | |
| parent | 24169: use print in command substitution to avoid a literal non-ASCII charact... (diff) | |
| download | zsh-14121f3d42a6791ad4ee3bd34ad5a72118e24cb6.tar zsh-14121f3d42a6791ad4ee3bd34ad5a72118e24cb6.tar.gz zsh-14121f3d42a6791ad4ee3bd34ad5a72118e24cb6.tar.bz2 zsh-14121f3d42a6791ad4ee3bd34ad5a72118e24cb6.tar.lz zsh-14121f3d42a6791ad4ee3bd34ad5a72118e24cb6.tar.xz zsh-14121f3d42a6791ad4ee3bd34ad5a72118e24cb6.tar.zst zsh-14121f3d42a6791ad4ee3bd34ad5a72118e24cb6.zip | |
24171: define USE_TERMINFO_MODULE when ncurses.h, ncurses/ncurses.h, or ncursesw/ncurses.h is present.
Diffstat (limited to 'Src/Modules')
| -rw-r--r-- | Src/Modules/terminfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/terminfo.c b/Src/Modules/terminfo.c index 15bd913f6..559dbaaec 100644 --- a/Src/Modules/terminfo.c +++ b/Src/Modules/terminfo.c @@ -30,7 +30,7 @@ #define USES_TERM_H 1 #include "terminfo.mdh" -#if defined(HAVE_TIGETFLAG) && defined(HAVE_CURSES_H) +#if defined(HAVE_TIGETFLAG) && (defined(HAVE_CURSES_H) || defined(HAVE_NCURSES_H) || defined(HAVE_NCURSES_NCURSES_H) || defined(NCURSESW_NCURSES_H)) # define USE_TERMINFO_MODULE 1 #else # undef USE_TERMINFO_MODULE |
