Date: Fri, 7 Nov 2014 10:49:55 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r274226 - head/gnu/lib/libdialog Message-ID: <201411071049.sA7AntTQ057708@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri Nov 7 10:49:54 2014 New Revision: 274226 URL: https://svnweb.freebsd.org/changeset/base/274226 Log: libdialog has to be linked to libncursesw and libm Modified: head/gnu/lib/libdialog/Makefile Modified: head/gnu/lib/libdialog/Makefile ============================================================================== --- head/gnu/lib/libdialog/Makefile Fri Nov 7 09:39:05 2014 (r274225) +++ head/gnu/lib/libdialog/Makefile Fri Nov 7 10:49:54 2014 (r274226) @@ -13,6 +13,9 @@ SRCS= argv.c arrows.c buildlist.c butto INCS= dialog.h dlg_colors.h dlg_config.h dlg_keys.h MAN= dialog.3 +DPADD= ${LIBNCURSESW} ${LIBM} +LDADD= -lncursesw -lm + CFLAGS+= -I${.CURDIR} -I${DIALOG} -D_XOPEN_SOURCE_EXTENDED -DGCC_UNUSED=__unused .PATH: ${DIALOG} WARNS?= 1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411071049.sA7AntTQ057708>