svn commit: r274123 - in head: lib/libdpv usr.bin/dpv

Garrett Cooper yaneurabeya at gmail.com
Wed Nov 5 05:49:48 UTC 2014


On Nov 4, 2014, at 18:36, Devin Teske <dteske at FreeBSD.org> wrote:

> Author: dteske
> Date: Wed Nov  5 02:36:28 2014
> New Revision: 274123
> URL: https://svnweb.freebsd.org/changeset/base/274123

…

> Modified: head/lib/libdpv/Makefile
> ==============================================================================
> --- head/lib/libdpv/Makefile	Wed Nov  5 02:08:37 2014	(r274122)
> +++ head/lib/libdpv/Makefile	Wed Nov  5 02:36:28 2014	(r274123)
> @@ -6,11 +6,13 @@ INCS=		dpv.h
> MAN=		dpv.3
> MLINKS=		dpv.3 dpv_free.3
> 
> -CFLAGS+=	-I${.CURDIR}
> -LDFLAGS+=	-ldialog -lfigpar -lncurses -lutil
> +DPADD=		${LIBFIGPAR}
> +LDADD=		-ldialog -lfigpar -lncurses -lutil

DPADD and LDADD are out of synch now; it should be:

DPADD=	${LIBDIALOG} ${LIBFIGPAR} ${LIBNCURSESW} ${LIBUTIL}
LDADD=	-ldialog -lfigpar -lncursesw -lutil

Please note that I used -lncursesw instead of -lncurses — please verify whether or not it works (should because stuff is hard linked, but it doesn’t hurt to check…).
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 496 bytes
Desc: Message signed with OpenPGP using GPGMail
URL: <http://lists.freebsd.org/pipermail/svn-src-all/attachments/20141104/caad02cd/attachment.sig>


More information about the svn-src-all mailing list