comparison src/s/freebsd.h @ 28572:34472501a68c

(TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as terminfo.o.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 13 Apr 2000 19:10:25 +0000
parents e24d2e75dea0
children 9e0cd0f9571f
comparison
equal deleted inserted replaced
28571:90bcf7fbdc57 28572:34472501a68c
171 /* Tell that garbage collector that setjmp is known to save all 171 /* Tell that garbage collector that setjmp is known to save all
172 registers relevant for conservative garbage collection in the 172 registers relevant for conservative garbage collection in the
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