diff options
author | dholland <dholland@pkgsrc.org> | 2010-07-26 06:52:52 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2010-07-26 06:52:52 +0000 |
commit | 2e590bfa32ab8ef7ecd259da10bd01ad362b9222 (patch) | |
tree | 823f53c477f1b1157955ee5faab63d538b727813 | |
parent | c23b3bdf85838c7da5d925d73738b321c8aa2ee5 (diff) | |
download | pkgsrc-2e590bfa32ab8ef7ecd259da10bd01ad362b9222.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.)
-rw-r--r-- | news/tin/options.mk | 4 |
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 |