1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

Add a knob to control Kerberos support.

Feature safe:	yes
This commit is contained in:
Joe Marcus Clarke 2012-10-28 00:57:29 +00:00
parent c616aeb503
commit 1f2c8b09c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=306535

View File

@ -44,7 +44,8 @@ OPTIONS= PAM "Enable PAM support" off \
KRB5 "Enable Kerberos V UAM" off \
ZEROCONF "Enable Zeroconf (Bonjour) support" on \
LDAP "Enable LDAP support" off \
SENDFILE "Enable sendfile support" off
SENDFILE "Enable sendfile support" off \
KERBEROS "Enable Kerberos support" on
MAN1= ad.1 afpldaptest.1 afppasswd.1 apple_dump.1 asip-status.pl.1 \
dbd.1 macusers.1 \
@ -63,6 +64,12 @@ PLIST_SUB+= NETATALKKRB5=""
PLIST_SUB+= NETATALKKRB5="@comment "
.endif
.if defined (WITH_KERBEROS)
CONFIGURE_ARGS+= --with-kerberos
.else
CONFIGURE_ARGS+= --without-kerberos
.endif
.if defined(WITH_PAM)
CONFIGURE_ARGS+= --with-pam
PLIST_SUB+= NETATALKPAM=""