aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-11-21 12:05:08 +0000
committerGerd Moellmann2000-11-21 12:05:08 +0000
commitff23e1dd170acbd8c702c5b81465c8b27d903f1f (patch)
tree72265a568740abd0025e9b95cfbf7a7f1a269301 /src
parent64566c039ed52aba60c12f0e3b79fa2b7c1a7d7e (diff)
downloademacs-ff23e1dd170acbd8c702c5b81465c8b27d903f1f.tar.gz
emacs-ff23e1dd170acbd8c702c5b81465c8b27d903f1f.zip
Don't try to include termcap.h; see comment there.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/cm.c6
-rw-r--r--src/term.c6
3 files changed, 14 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 07b35a0ed93..8caa4e4ea18 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12000-11-21 Gerd Moellmann <gerd@gnu.org>
2
3 * term.c, cm.c: Don't try to include termcap.h; see comment there.
4
12000-11-21 Kenichi Handa <handa@etl.go.jp> 52000-11-21 Kenichi Handa <handa@etl.go.jp>
2 6
3 * s/sol2-5.h: Move #undef USE_MMAP_FOR_BUFFERS out of #if 0 7 * s/sol2-5.h: Move #undef USE_MMAP_FOR_BUFFERS out of #if 0
diff --git a/src/cm.c b/src/cm.c
index 144baa847b5..56a1160c593 100644
--- a/src/cm.c
+++ b/src/cm.c
@@ -25,7 +25,11 @@ Boston, MA 02111-1307, USA. */
25#include "cm.h" 25#include "cm.h"
26#include "termhooks.h" 26#include "termhooks.h"
27 27
28#ifdef HAVE_TERMCAP_H 28/* For now, don't try to include termcap.h. On some systems,
29 configure finds a non-standard termcap.h that the main build
30 won't find. */
31
32#if defined HAVE_TERMCAP_H && 0
29#include <termcap.h> 33#include <termcap.h>
30#else 34#else
31extern void tputs P_ ((const char *, int, int (*)(int))); 35extern void tputs P_ ((const char *, int, int (*)(int)));
diff --git a/src/term.c b/src/term.c
index fc96d7d7129..8e1443f4507 100644
--- a/src/term.c
+++ b/src/term.c
@@ -38,7 +38,11 @@ Boston, MA 02111-1307, USA. */
38#include "dispextern.h" 38#include "dispextern.h"
39#include "window.h" 39#include "window.h"
40 40
41#ifdef HAVE_TERMCAP_H 41/* For now, don't try to include termcap.h. On some systems,
42 configure finds a non-standard termcap.h that the main build
43 won't find. */
44
45#if defined HAVE_TERMCAP_H && 0
42#include <termcap.h> 46#include <termcap.h>
43#else 47#else
44extern void tputs P_ ((const char *, int, int (*)(int))); 48extern void tputs P_ ((const char *, int, int (*)(int)));