diff options
author | wiz <wiz@pkgsrc.org> | 2008-07-14 10:09:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-07-14 10:09:56 +0000 |
commit | b558d890558b0fb2689797f4f7f984d2a611ba26 (patch) | |
tree | 480c636d9897e69fb738043286f79bfa34fc8136 | |
parent | c41fed33beb2684e061a56d47464da9407ba2b32 (diff) | |
download | pkgsrc-b558d890558b0fb2689797f4f7f984d2a611ba26.tar.gz |
Fix build with ncursesw option set. Comment from the commit:
# XXX: NetBSD's wide curses are not accepted, because the configure
# script doesn't find the proper headers.
# This could be a bug in the buildlink framework for wide curses.
# The next line is a workaround until someone(TM) finds time to
# investigate this.
-rw-r--r-- | news/tin/options.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/news/tin/options.mk b/news/tin/options.mk index 63091fff880..863f1f4913a 100644 --- a/news/tin/options.mk +++ b/news/tin/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.9 2007/11/25 12:44:07 wiz Exp $ +# $NetBSD: options.mk,v 1.10 2008/07/14 10:09:56 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.tin PKG_SUPPORTED_OPTIONS= icu inet6 tin-use-inn-spool @@ -28,6 +28,12 @@ CONFIGURE_ARGS+= --with-curses-dir=${BUILDLINK_PREFIX.ncurses} . include "../../devel/ncursesw/buildlink3.mk" CONFIGURE_ARGS+= --with-screen=ncursesw CONFIGURE_ARGS+= --with-curses-dir=${BUILDLINK_PREFIX.ncursesw} +# XXX: NetBSD's wide curses are not accepted, because the configure +# script doesn't find the proper headers. +# This could be a bug in the buildlink framework for wide curses. +# The next line is a workaround until someone(TM) finds time to +# investigate this. +USE_BUILTIN.ncursesw= no .endif .if !empty(PKG_OPTIONS:Micu) |