summaryrefslogtreecommitdiff
path: root/sysutils/ipa/options.mk
blob: 4f3c7eb9c4ed0f40c8b41ca8d4866649f67669ab (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# $NetBSD: options.mk,v 1.1 2006/10/18 11:45:22 markd Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.ipa
PKG_SUPPORTED_OPTIONS=	ipa-memfunc-debug ipa-without-autorules \
			ipa-without-limits ipa-without-rules \
			ipa-without-sublimits ipa-without-thresholds

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

###
### Enable ipa_memfunc debugging
###
.if !empty(PKG_OPTIONS:Mipa-memfunc-debug)
CONFIGURE_ARGS+= --enable-memfunc-debug
.endif

###
### 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 sublimits support
###
.if !empty(PKG_OPTIONS:Mipa-without-sublimits)
CONFIGURE_ARGS+= --disable-sublimits
.endif

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