]> git.eshelyaron.com Git - emacs.git/commitdiff
(TERMCAP_OBJ): Removed.
authorGerd Moellmann <gerd@gnu.org>
Thu, 27 Apr 2000 19:09:58 +0000 (19:09 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 27 Apr 2000 19:09:58 +0000 (19:09 +0000)
(LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000.

src/s/freebsd.h

index 07c736dd371a4fec076402eaaa830641d7005a47..26a41c66b9f8b9a223d00d052386ed544b8effe9 100644 (file)
@@ -45,7 +45,9 @@
 
 #define LIBS_DEBUG
 #define LIBS_SYSTEM -lutil
+#if __FreeBSD_version < 400000
 #define LIBS_TERMCAP -ltermcap
+#endif
 
 #define SYSV_SYSTEM_DIR
 
 
 #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