summaryrefslogtreecommitdiff
path: root/news/tin
diff options
context:
space:
mode:
authordholland <dholland>2010-07-26 06:52:52 +0000
committerdholland <dholland>2010-07-26 06:52:52 +0000
commite3b9255514619f7dd263b5d188779e33ed8d9283 (patch)
tree823f53c477f1b1157955ee5faab63d538b727813 /news/tin
parentc53b3f88020fd9770547d4b1a6b08425961d1b44 (diff)
downloadpkgsrc-e3b9255514619f7dd263b5d188779e33ed8d9283.tar.gz
For options ncurses and ncursesw, set USE_NCURSES=yes, on the assumption
that explicitly forcing ncurses does not mean "use builtin curses anyway" unless the builtin curses is *really* ncurses. (Yes, the ncursesw builtin.mk responds to USE_NCURSES and not USE_NCURSESW; whether that's a bug is for someone else to decide.)
Diffstat (limited to 'news/tin')
-rw-r--r--news/tin/options.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/news/tin/options.mk b/news/tin/options.mk
index 792e4b82530..889b87e57bf 100644
--- a/news/tin/options.mk
+++ b/news/tin/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.11 2010/02/25 16:05:57 drochner Exp $
+# $NetBSD: options.mk,v 1.12 2010/07/26 06:52:52 dholland Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.tin
PKG_SUPPORTED_OPTIONS= icu inet6 tin-use-inn-spool
@@ -20,12 +20,14 @@ CONFIGURE_ARGS+= --with-curses-dir=${BUILDLINK_PREFIX.curses}
.if !empty(PKG_OPTIONS:Mncurses)
. include "../../devel/ncurses/buildlink3.mk"
+USE_NCURSES= yes
CONFIGURE_ARGS+= --with-screen=ncurses
CONFIGURE_ARGS+= --with-curses-dir=${BUILDLINK_PREFIX.ncurses}
.endif
.if !empty(PKG_OPTIONS:Mncursesw)
. include "../../devel/ncursesw/buildlink3.mk"
+USE_NCURSES= yes
CONFIGURE_ARGS+= --with-screen=ncursesw
CONFIGURE_ARGS+= --with-curses-dir=${BUILDLINK_PREFIX.ncursesw}
.endif