]> git.eshelyaron.com Git - emacs.git/commitdiff
(TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as
authorGerd Moellmann <gerd@gnu.org>
Thu, 13 Apr 2000 19:10:25 +0000 (19:10 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 13 Apr 2000 19:10:25 +0000 (19:10 +0000)
terminfo.o.

src/s/freebsd.h

index 15bbe2b6426ec8fa4a9842c19079fe7251490920..72337a02216c713f262274e95a3f52ed2d4a785d 100644 (file)
    jmp_buf.  */
 
 #define GC_SETJMP_WORKS 1
+
+/* In FreeBSD 4, we must use terminfo.o instead of tparam.o.  Termcap
+   capabilities use %-specifiers that tparm.o cannot handle.
+   Libtermcap.a contains a `tparm' that terminfo.c can use.  */
+
+#if __FreeBSD__ >= 4
+#define TERMCAP_OBJ terminfo.o
+#endif