svn commit: r274851 - head/usr.bin/dpv
Ian Lepore
ian at FreeBSD.org
Sat Nov 22 14:53:51 UTC 2014
Author: ian
Date: Sat Nov 22 14:53:50 2014
New Revision: 274851
URL: https://svnweb.freebsd.org/changeset/base/274851
Log:
Add libm to eliminate "undefined reference to sqrt" on arm 'softfp' builds.
Modified:
head/usr.bin/dpv/Makefile
Modified: head/usr.bin/dpv/Makefile
==============================================================================
--- head/usr.bin/dpv/Makefile Sat Nov 22 13:06:47 2014 (r274850)
+++ head/usr.bin/dpv/Makefile Sat Nov 22 14:53:50 2014 (r274851)
@@ -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
More information about the svn-src-head
mailing list