summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2014-10-23 00:43:08 +0000
committerngie <ngie@FreeBSD.org>2014-10-23 00:43:08 +0000
commit9a57ba8bbcc06dd108d277a22c0dcf54515d67cf (patch)
treef57cb1533d9bd29214e57985c17ee17bd8005d1c /usr.bin
parentf3b7cba370729bfca1a05bb94cc9eedf197b42dc (diff)
downloadFreeBSD-src-9a57ba8bbcc06dd108d277a22c0dcf54515d67cf.zip
FreeBSD-src-9a57ba8bbcc06dd108d277a22c0dcf54515d67cf.tar.gz
MFC r270650 (this is what should have been committed in r273497):
Convert LIBCURSES to LIBNCURSES to fix "make checkdpadd" Also, add a missing LIBPANEL dependency for lldb Approved by: rpaulo (mentor) Suggested by: brooks Phabric: D675 (as part of a larger diff) PR: 192762
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/bc/Makefile4
-rw-r--r--usr.bin/clang/lldb/Makefile4
-rw-r--r--usr.bin/talk/Makefile4
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/bc/Makefile b/usr.bin/bc/Makefile
index 5fd918d..d2f26f1 100644
--- a/usr.bin/bc/Makefile
+++ b/usr.bin/bc/Makefile
@@ -5,8 +5,8 @@ PROG= bc
SRCS= bc.y scan.l tty.c
CFLAGS+= -I. -I${.CURDIR}
-LDADD+= -ledit -lcurses
-DPADD+= ${LIBEDIT} ${LIBCURSES}
+DPADD+= ${LIBEDIT} ${LIBNCURSESW}
+LDADD+= -ledit -lncursesw
NO_WMISSING_VARIABLE_DECLARATIONS=
diff --git a/usr.bin/clang/lldb/Makefile b/usr.bin/clang/lldb/Makefile
index b8dc38e..92e2640 100644
--- a/usr.bin/clang/lldb/Makefile
+++ b/usr.bin/clang/lldb/Makefile
@@ -16,8 +16,8 @@ SRCS= Driver.cpp \
lldb.1:
ln -fs ${LLDB_SRCS}/docs/lldb.1 ${.TARGET}
-DPADD= ${LIBEDIT} ${LIBCURSES} ${LIBEXECINFO}
-LDADD= -lcurses -ledit -lexecinfo -lpanel
+DPADD= ${LIBEDIT} ${LIBNCURSESW} ${LIBEXECINFO} ${LIBPANEL}
+LDADD= -ledit -lncursesw -lexecinfo -lpanel
LLDB_LIBS=\
lldb \
diff --git a/usr.bin/talk/Makefile b/usr.bin/talk/Makefile
index 438542c..eb14d22 100644
--- a/usr.bin/talk/Makefile
+++ b/usr.bin/talk/Makefile
@@ -4,7 +4,7 @@
PROG= talk
SRCS= ctl.c ctl_transact.c display.c get_addrs.c get_iface.c get_names.c \
init_disp.c invite.c io.c look_up.c msgs.c talk.c
-DPADD= ${LIBCURSESW}
-LDADD= -lcursesw
+DPADD= ${LIBNCURSESW}
+LDADD= -lncursesw
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud