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
This commit is contained in:
Devin Teske 2014-11-05 20:58:25 +00:00
parent 8a71aca501
commit f5a6518ef3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274146
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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