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

This commit is contained in:
ian 2014-11-22 14:53:50 +00:00
parent 5c2d026506
commit 6e683ece83

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