diff options
author | rillig <rillig> | 2007-03-07 11:04:40 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-03-07 11:04:40 +0000 |
commit | d9c3dd4ac0d93b18cd1c09adfbde1618554213ea (patch) | |
tree | 2587e947fa0883f066d52aa926a4e62097e06cac /print | |
parent | ff52bc4d8b00551935fd6b7a0688798603946070 (diff) | |
download | pkgsrc-d9c3dd4ac0d93b18cd1c09adfbde1618554213ea.tar.gz |
Added a kerberos option. Fixes PR 12292.
Diffstat (limited to 'print')
-rw-r--r-- | print/LPRng-core/options.mk | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/print/LPRng-core/options.mk b/print/LPRng-core/options.mk index fd4fa1f898b..5f833bcdf81 100644 --- a/print/LPRng-core/options.mk +++ b/print/LPRng-core/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.2 2005/10/05 13:29:49 wiz Exp $ +# $NetBSD: options.mk,v 1.3 2007/03/07 11:04:40 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.LPRng-core -PKG_SUPPORTED_OPTIONS= lprng-priv-ports lprng-suid +PKG_SUPPORTED_OPTIONS= kerberos lprng-priv-ports lprng-suid PKG_SUGGESTED_OPTIONS= lprng-suid .include "../../mk/bsd.options.mk" @@ -12,3 +12,8 @@ CONFIGURE_ARGS+= --enable-priv_ports .if empty(PKG_OPTIONS:Mlprng-suid) CONFIGURE_ARGS+= --disable-setuid .endif +.if !empty(PKG_OPTIONS:Mkerberos) +CONFIGURE_ARGS+= --enable-kerberos +KRB5_ACCEPTED= mit-krb5 +. include "../../mk/krb5.buildlink3.mk" +.endif |