summaryrefslogtreecommitdiff
path: root/textproc/hunspell/options.mk
blob: ed7c1e7358757d12212b500d5a6314250117ceb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $NetBSD: options.mk,v 1.7 2018/05/23 22:06:50 wiz Exp $

PKG_OPTIONS_VAR=		PKG_OPTIONS.hunspell
PKG_SUPPORTED_OPTIONS=		wide-curses
PKG_SUGGESTED_OPTIONS=		# empty

.include "../../mk/bsd.options.mk"

###
### Wide curses support; otherwise, default to using narrow curses.
###
.if !empty(PKG_OPTIONS:Mwide-curses)
.include "../../devel/ncursesw/buildlink3.mk"
CPPFLAGS.SunOS+=		-D_XPG6
.else
.include "../../mk/curses.buildlink3.mk"
.endif