svn commit: r274851 - head/usr.bin/dpv

Devin Teske devin at shxd.cx
Sat Nov 22 20:26:25 UTC 2014



> On Nov 22, 2014, at 6:53 AM, Ian Lepore <ian at FreeBSD.org> wrote:
> 
> 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
> 
> 

Thank you.
-- 
Devin


More information about the svn-src-all mailing list