about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2001-04-12 17:11:39 +0000
committerBart Schaefer <barts@users.sourceforge.net>2001-04-12 17:11:39 +0000
commit34f65c6f32a614adb871c0dce7d602e797c0585f (patch)
tree24fb6282be34f99a1dea96aaa4703839c35192b9 /Src
parent25bcf866261b9bcffd1cee82521bce7da79edd8a (diff)
downloadzsh-34f65c6f32a614adb871c0dce7d602e797c0585f.tar.gz
zsh-34f65c6f32a614adb871c0dce7d602e797c0585f.tar.xz
zsh-34f65c6f32a614adb871c0dce7d602e797c0585f.zip
Fiddle with <term.h> vs. <termcap.h> inclusion.
Diffstat (limited to 'Src')
-rw-r--r--Src/Modules/terminfo.c9
-rw-r--r--Src/prototypes.h4
-rw-r--r--Src/system.h4
3 files changed, 8 insertions, 9 deletions
diff --git a/Src/Modules/terminfo.c b/Src/Modules/terminfo.c
index 56ab62fb7..b3c3c2876 100644
--- a/Src/Modules/terminfo.c
+++ b/Src/Modules/terminfo.c
@@ -29,17 +29,14 @@
 
 #include "terminfo.mdh"
 #include "terminfo.pro"
-#ifdef HAVE_CURSES_H
-# include <curses.h>
-#endif
-#ifdef HAVE_TERM_H
-# include <term.h>
-#endif
 
 static char terminfo_nam[] = "terminfo";
 
 /**/
 #ifdef HAVE_TIGETSTR
+# ifdef HAVE_CURSES_H
+#  include <curses.h>
+# endif
 
 static Param terminfo_pm;
 
diff --git a/Src/prototypes.h b/Src/prototypes.h
index 7b2aa9d67..5b34b93b4 100644
--- a/Src/prototypes.h
+++ b/Src/prototypes.h
@@ -33,15 +33,13 @@ char *realloc _((void *, size_t));
 char *calloc _((size_t, size_t));
 #endif
 
-#ifndef HAVE_TERMCAP_H
+#if !(defined(HAVE_TERMCAP_H) || defined(HAVE_TERM_H))
 extern int tgetent _((char *bp, char *name));
 extern int tgetnum _((char *id));
 extern int tgetflag _((char *id));
 extern char *tgetstr _((char *id, char **area));
 extern char *tgoto _((char *cm, int destcol, int destline));
-# ifndef HAVE_TERM_H
 extern int tputs _((char *cp, int affcnt, int (*outc) (int)));
-# endif
 #endif
 
 /* MISSING PROTOTYPES FOR VARIOUS OPERATING SYSTEMS */
diff --git a/Src/system.h b/Src/system.h
index 50661e0fd..6966f517b 100644
--- a/Src/system.h
+++ b/Src/system.h
@@ -312,6 +312,10 @@ struct timezone {
 
 #ifdef HAVE_TERMCAP_H
 # include <termcap.h>
+#else
+# ifdef HAVE_TERM_H
+#  include <term.h>
+# endif
 #endif
 
 #if defined(GWINSZ_IN_SYS_IOCTL) || defined(CLOBBERS_TYPEAHEAD)