summaryrefslogtreecommitdiff
path: root/lang/gawk/options.mk
blob: a7f3c319ae6d6ee7accc72ebf74534a1ac1959a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# $NetBSD: options.mk,v 1.2 2012/06/15 00:32:27 sbd Exp $

PKG_OPTIONS_VAR=        PKG_OPTIONS.gawk
PKG_SUPPORTED_OPTIONS=	portals readline
PKG_SUGGESTED_OPTIONS=	readline

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

.if !empty(PKG_OPTIONS:Mportals)
CONFIGURE_ARGS+=        --enable-portals
.endif

.if !empty(PKG_OPTIONS:Mreadline)
.include "../../devel/readline/buildlink3.mk"
.else
CONFIGURE_ARGS+=	--without-readline
.endif