On Nov 4, 2014, at 18:36, Devin Teske <dte...@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…).

Attachment: signature.asc
Description: Message signed with OpenPGP using GPGMail

Reply via email to