diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2008-03-13 11:10:59 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-03-13 11:10:59 +0000 |
| commit | 2ca42b2025cceaabd64889aa3b932195e8d5720c (patch) | |
| tree | 3411d35057120791220f7fff1b2944cc912a4389 /Src/Modules/termcap.c | |
| parent | 24704: completion for BSD calendar. (diff) | |
| download | zsh-2ca42b2025cceaabd64889aa3b932195e8d5720c.tar zsh-2ca42b2025cceaabd64889aa3b932195e8d5720c.tar.gz zsh-2ca42b2025cceaabd64889aa3b932195e8d5720c.tar.bz2 zsh-2ca42b2025cceaabd64889aa3b932195e8d5720c.tar.lz zsh-2ca42b2025cceaabd64889aa3b932195e8d5720c.tar.xz zsh-2ca42b2025cceaabd64889aa3b932195e8d5720c.tar.zst zsh-2ca42b2025cceaabd64889aa3b932195e8d5720c.zip | |
24705: rationalise curses and term headers even more
Diffstat (limited to 'Src/Modules/termcap.c')
| -rw-r--r-- | Src/Modules/termcap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Src/Modules/termcap.c b/Src/Modules/termcap.c index 351324a68..776351cf6 100644 --- a/Src/Modules/termcap.c +++ b/Src/Modules/termcap.c @@ -36,7 +36,7 @@ #include "../../config.h" #ifdef HAVE_TGETENT -# if defined(HAVE_CURSES_H) && defined(HAVE_TERM_H) +# if defined(ZSH_HAVE_CURSES_H) && defined(ZSH_HAVE_TERM_H) # define USES_TERM_H 1 # else # ifdef HAVE_TERMCAP_H @@ -54,10 +54,10 @@ # ifdef HAVE_TERMIO_H # include <termio.h> # endif -# ifdef TERM_H_NEEDS_CURSES_H -# include <curses.h> +# ifdef ZSH_HAVE_CURSES_H +# include "../zshcurses.h" # endif -# include <term.h> +# include "../zshterm.h" # else # ifdef USES_TERMCAP_H # include <termcap.h> |
