summaryrefslogtreecommitdiff
path: root/databases/ipa_sdb/options.mk
blob: fd3ff21f5d2da2cc1f106ca2c1b22fec771c5151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# $NetBSD: options.mk,v 1.2 2007/01/22 12:23:39 obache Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.ipa_sdb
PKG_SUPPORTED_OPTIONS=	ipa-without-autorules ipa-without-limits \
			ipa-without-rules ipa-without-thresholds

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

###
### Disable dynamic rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-autorules)
CONFIGURE_ARGS+= --disable-autorules
.endif

###
### Disable limits support
###
.if !empty(PKG_OPTIONS:Mipa-without-limits)
CONFIGURE_ARGS+= --disable-limits
.endif

###
### Disable static rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-rules)
CONFIGURE_ARGS+= --disable-rules
.endif

###
### Disable thresholds support
###
.if !empty(PKG_OPTIONS:Mipa-without-thresholds)
CONFIGURE_ARGS+= --disable-thresholds
.endif