aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-09-16 04:19:07 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-09-16 04:19:07 +0000
commit92fb76cd75b92d029f0ff584b1c7fc8d0631e119 (patch)
tree622ac6274787968d9dc71566805391faf3b5742d
parent93ddf54615de9b764e5c108eb93b9858e3194df1 (diff)
downloadsrc-92fb76cd75b92d029f0ff584b1c7fc8d0631e119.tar.gz
src-92fb76cd75b92d029f0ff584b1c7fc8d0631e119.zip
Remove unneded -ltermcap or -lmytinfo
Notes
Notes: svn path=/head/; revision=65914
-rw-r--r--usr.sbin/i4b/isdnd/Makefile4
-rw-r--r--usr.sbin/i4b/isdntel/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/i4b/isdnd/Makefile b/usr.sbin/i4b/isdnd/Makefile
index 8b325b0c3225..53978b26f628 100644
--- a/usr.sbin/i4b/isdnd/Makefile
+++ b/usr.sbin/i4b/isdnd/Makefile
@@ -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)
diff --git a/usr.sbin/i4b/isdntel/Makefile b/usr.sbin/i4b/isdntel/Makefile
index f1478a5a5dc3..a7a68a8a3b97 100644
--- a/usr.sbin/i4b/isdntel/Makefile
+++ b/usr.sbin/i4b/isdntel/Makefile
@@ -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>