From owner-svn-src-all@FreeBSD.ORG Sat Nov 22 20:26:25 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E37A5AF; Sat, 22 Nov 2014 20:26:25 +0000 (UTC) Received: from shxd.cx (unknown [64.201.244.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39C51F12; Sat, 22 Nov 2014 20:26:25 +0000 (UTC) Received: from mobile-166-171-248-010.mycingular.net ([166.171.248.10]:14078 helo=[10.233.163.100]) by shxd.cx with esmtps (TLSv1:AES128-SHA:128) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1XrzxJ-000B5K-Hz; Fri, 21 Nov 2014 17:57:45 -0800 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: svn commit: r274851 - head/usr.bin/dpv From: Devin Teske X-Mailer: iPhone Mail (11B554a) In-Reply-To: <201411221453.sAMEroJP011185@svn.freebsd.org> Date: Sat, 22 Nov 2014 12:26:24 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: References: <201411221453.sAMEroJP011185@svn.freebsd.org> To: Ian Lepore Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Nov 2014 20:26:25 -0000 > On Nov 22, 2014, at 6:53 AM, Ian Lepore wrote: >=20 > Author: ian > Date: Sat Nov 22 14:53:50 2014 > New Revision: 274851 > URL: https://svnweb.freebsd.org/changeset/base/274851 >=20 > Log: > Add libm to eliminate "undefined reference to sqrt" on arm 'softfp' build= s. >=20 > Modified: > head/usr.bin/dpv/Makefile >=20 > Modified: head/usr.bin/dpv/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D > --- 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=3D dpv >=20 > CFLAGS+=3D -I${.CURDIR} >=20 > -DPADD=3D ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBU= TIL} > -LDADD=3D -ldpv -ldialog -lfigpar -lncursesw -lutil > +DPADD=3D ${LIBDPV} ${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBU= TIL} ${LIBM} > +LDADD=3D -ldpv -ldialog -lfigpar -lncursesw -lutil -lm >=20 > WARNS?=3D 6 >=20 >=20 Thank you. --=20 Devin=