Add libm to eliminate "undefined reference to sqrt" on arm 'softfp' builds.

This commit is contained in:
Ian Lepore 2014-11-22 14:53:50 +00:00
parent dec0135828
commit dbd3f10702
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274851

View File

@ -4,8 +4,8 @@ PROG= dpv
CFLAGS+= -I${.CURDIR}
DPADD= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBUTIL}
LDADD= -ldpv -ldialog -lfigpar -lncursesw -lutil
DPADD= ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBUTIL} ${LIBM}
LDADD= -ldpv -ldialog -lfigpar -lncursesw -lutil -lm
WARNS?= 6