diff options
author | brooks <brooks@FreeBSD.org> | 2014-03-01 03:09:16 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2014-03-01 03:09:16 +0000 |
commit | 12b5ca7c289f99babbf87c98f27ae68869598412 (patch) | |
tree | 7575c34d89aaa8ea2a9687b4296b70da4b0446fe /gnu | |
parent | f7aef0811a0dc06d5a4e067960fdade645b093c1 (diff) | |
download | FreeBSD-src-12b5ca7c289f99babbf87c98f27ae68869598412.zip FreeBSD-src-12b5ca7c289f99babbf87c98f27ae68869598412.tar.gz |
MFC r261296:
Merge from CheriBSD:
commit c1acf022c533c5ae27e0cd556977eafe3f5959eb
Author: Brooks Davis <brooks@one-eyed-alien.net>
Date: Fri Jan 17 21:46:44 2014 +0000
Add an option WITHOUT_NCURSESW to suppress building and linking to
libncursesw. While wide character support it useful we'd like to
only need one ncurses library on embedded systems.
Sponsored by: DARPA, AFRL
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/dialog/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/usr.bin/dialog/Makefile b/gnu/usr.bin/dialog/Makefile index f9281c8..7c98cfc 100644 --- a/gnu/usr.bin/dialog/Makefile +++ b/gnu/usr.bin/dialog/Makefile @@ -3,11 +3,21 @@ DIALOG= ${.CURDIR}/../../../contrib/dialog PROG= dialog -DPADD= ${LIBDIALOG} ${LIBNCURSESW} ${LIBM} -LDADD= -ldialog -lncursesw -lm +DPADD= ${LIBDIALOG} ${LIBM} +LDADD= -ldialog -lm CFLAGS+= -I${.CURDIR} -I${DIALOG} .PATH: ${DIALOG} WARNS?= 6 +.include <bsd.own.mk> + +.if ${MK_NCURSESW} == "no" +DPADD+= ${LIBNCURSES} +LDADD+= -lncurses +.else +DPADD+= ${LIBNCURSESW} +LDADD+= -lncursesw +.endif + .include <bsd.prog.mk> |