aboutsummaryrefslogtreecommitdiffstats
path: root/src/s
diff options
context:
space:
mode:
authorGerd Moellmann2000-04-13 19:10:25 +0000
committerGerd Moellmann2000-04-13 19:10:25 +0000
commitcbf5ca04c1122b944769650760d8a77c4e03fd8b (patch)
tree6a0afa92a1e0bac98fba6df573606ac35dc740b1 /src/s
parenta16fcdfc6471bf0eb518097bf639c91e49f33525 (diff)
downloademacs-cbf5ca04c1122b944769650760d8a77c4e03fd8b.tar.gz
emacs-cbf5ca04c1122b944769650760d8a77c4e03fd8b.zip
(TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as
terminfo.o.
Diffstat (limited to 'src/s')
-rw-r--r--src/s/freebsd.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/s/freebsd.h b/src/s/freebsd.h
index 15bbe2b6426..72337a02216 100644
--- a/src/s/freebsd.h
+++ b/src/s/freebsd.h
@@ -173,3 +173,11 @@
173 jmp_buf. */ 173 jmp_buf. */
174 174
175#define GC_SETJMP_WORKS 1 175#define GC_SETJMP_WORKS 1
176
177/* In FreeBSD 4, we must use terminfo.o instead of tparam.o. Termcap
178 capabilities use %-specifiers that tparm.o cannot handle.
179 Libtermcap.a contains a `tparm' that terminfo.c can use. */
180
181#if __FreeBSD__ >= 4
182#define TERMCAP_OBJ terminfo.o
183#endif