From f5a6518ef39bc6cd37167433a55c648d1d5d2d43 Mon Sep 17 00:00:00 2001 From: Devin Teske Date: Wed, 5 Nov 2014 20:58:25 +0000 Subject: [PATCH] Balance DPADD against LDADD for dpv(1,3). Thanks to: ngie MFC after: 21 days X-MFC-to: stable/10 stable/9 X-MFC-with: 274116 274120 274121 274123 274144 --- lib/libdpv/Makefile | 4 ++-- usr.bin/dpv/Makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/libdpv/Makefile b/lib/libdpv/Makefile index 24fb378dddd5..8096cc92c8ec 100644 --- a/lib/libdpv/Makefile +++ b/lib/libdpv/Makefile @@ -6,8 +6,8 @@ INCS= dpv.h MAN= dpv.3 MLINKS= dpv.3 dpv_free.3 -DPADD= ${LIBFIGPAR} -LDADD= -ldialog -lfigpar -lncurses -lutil +DPADD= ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBUTIL} +LDADD= -ldialog -lfigpar -lncursesw -lutil SRCS= dialog_util.c dialogrc.c dprompt.c dpv.c status.c util.c diff --git a/usr.bin/dpv/Makefile b/usr.bin/dpv/Makefile index c5b834808865..3cc18cafc468 100644 --- a/usr.bin/dpv/Makefile +++ b/usr.bin/dpv/Makefile @@ -4,8 +4,8 @@ PROG= dpv CFLAGS+= -I${.CURDIR} -DPADD= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSES} ${LIBUTIL} -LDADD= -ldpv -ldialog -lfigpar -lncurses -lutil +DPADD= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBUTIL} +LDADD= -ldpv -ldialog -lfigpar -lncursesw -lutil WARNS?= 6