From: Gerd Moellmann Date: Thu, 27 Apr 2000 19:09:58 +0000 (+0000) Subject: (TERMCAP_OBJ): Removed. X-Git-Tag: emacs-pretest-21.0.90~4110 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7e0ba6da56f6a557f135e0ca65835b473db8a0e1;p=emacs.git (TERMCAP_OBJ): Removed. (LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000. --- diff --git a/src/s/freebsd.h b/src/s/freebsd.h index 07c736dd371..26a41c66b9f 100644 --- a/src/s/freebsd.h +++ b/src/s/freebsd.h @@ -45,7 +45,9 @@ #define LIBS_DEBUG #define LIBS_SYSTEM -lutil +#if __FreeBSD_version < 400000 #define LIBS_TERMCAP -ltermcap +#endif #define SYSV_SYSTEM_DIR @@ -180,10 +182,3 @@ #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