changeset 33672:a94852aef620

Don't try to include termcap.h; see comment there.
author Gerd Moellmann <gerd@gnu.org>
date Tue, 21 Nov 2000 12:04:32 +0000
parents 90acc0606378
children ed673ad26a6d
files src/cm.c src/term.c
diffstat 2 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/cm.c	Tue Nov 21 11:41:09 2000 +0000
+++ b/src/cm.c	Tue Nov 21 12:04:32 2000 +0000
@@ -25,7 +25,11 @@
 #include "cm.h"
 #include "termhooks.h"
 
-#ifdef HAVE_TERMCAP_H
+/* For now, don't try to include termcap.h.  On some systems,
+   configure finds a non-standard termcap.h that the main build
+   won't find.  */
+
+#if defined HAVE_TERMCAP_H && 0
 #include <termcap.h>
 #else
 extern void tputs P_ ((const char *, int, int (*)(int)));
--- a/src/term.c	Tue Nov 21 11:41:09 2000 +0000
+++ b/src/term.c	Tue Nov 21 12:04:32 2000 +0000
@@ -38,7 +38,11 @@
 #include "dispextern.h"
 #include "window.h"
 
-#ifdef HAVE_TERMCAP_H
+/* For now, don't try to include termcap.h.  On some systems,
+   configure finds a non-standard termcap.h that the main build
+   won't find.  */
+
+#if defined HAVE_TERMCAP_H && 0
 #include <termcap.h>
 #else
 extern void tputs P_ ((const char *, int, int (*)(int)));