blob: 3bd72db1fadf5c7f2cb59cf6aaf89c9361482bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: options.mk,v 1.1 2006/01/31 04:15:29 epg Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.neon
PKG_SUPPORTED_OPTIONS= gssapi
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mgssapi)
CONFIGURE_ARGS+= --with-gssapi
. include "../../mk/krb5.buildlink3.mk"
.else
CONFIGURE_ARGS+= --without-gssapi
.endif
|