diff options
Diffstat (limited to 'chat/silc-server/options.mk')
-rw-r--r-- | chat/silc-server/options.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/chat/silc-server/options.mk b/chat/silc-server/options.mk new file mode 100644 index 00000000000..5af335ff79d --- /dev/null +++ b/chat/silc-server/options.mk @@ -0,0 +1,15 @@ +# $NetBSD: options.mk,v 1.1 2005/04/08 15:09:43 salo Exp $ +# + +PKG_OPTIONS_VAR= PKG_OPTIONS.silc-server +PKG_SUPPORTED_OPTIONS= debug inet6 +PKG_DEFAULT_OPTIONS= inet6 +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mdebug) +CONFIGURE_ARGS+= --enable-debug +.endif + +.if !empty(PKG_OPTIONS:Minet6) +CONFIGURE_ARGS+= --enable-ipv6 +.endif |