Remove unneded -ltermcap or -lmytinfo

This commit is contained in:
Andrey A. Chernov 2000-09-16 04:19:07 +00:00
parent 93ddf54615
commit 92fb76cd75
2 changed files with 4 additions and 4 deletions

View File

@ -20,8 +20,8 @@ MAN5 = isdnd.rc.5 isdnd.rates.5 isdnd.acct.5
.if !defined(I4B_WITHOUT_CURSES)
COPTS += -DUSE_CURSES
DPADD = ${LIBCURSES} ${LIBTERMCAP}
LDADD = -lcurses -ltermcap
DPADD = ${LIBCURSES}
LDADD = -lcurses
.endif
.if defined(I4B_EXTERNAL_MONITOR)

View File

@ -2,8 +2,8 @@
PROG = isdntel
SRCS = main.c display.c files.c alias.c
DPADD = ${LIBNCURSES} ${LIBMYTINFO}
LDADD = -lncurses -lmytinfo
DPADD = ${LIBNCURSES}
LDADD = -lncurses
MAN8 = isdntel.8
.include <bsd.prog.mk>