c1461734ef
From Andrey Simonenko in PR pkg/46712 Changes: * autoconf 2.68 -> 2.69, automake 1.11.1 -> 1.12.2. * Corrected compilation with --enable-ctl-creds on NetBSD. * Corrected output for "ipactl -a ... status". * Corrected work with the -n switch in ipactl. Package changes: * Removed the ipa-memfunc-debug option.
43 lines
909 B
Makefile
43 lines
909 B
Makefile
# $NetBSD: options.mk,v 1.2 2012/07/17 21:00:34 asau Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ipa
|
|
PKG_SUPPORTED_OPTIONS= ipa-without-autorules \
|
|
ipa-without-limits ipa-without-rules \
|
|
ipa-without-sublimits 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 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
|