diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2012-10-28 00:57:29 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2012-10-28 00:57:29 +0000 |
commit | 1f2c8b09c343a1cc51d6682ab68188c6518d1f6f (patch) | |
tree | 7eefe6cfaddc521851306ec9824d120aec231f6f /net/netatalk3/Makefile | |
parent | c616aeb50381b8710cff3351ed5d9e6bee6dcef0 (diff) | |
download | ports-1f2c8b09c343a1cc51d6682ab68188c6518d1f6f.tar.gz ports-1f2c8b09c343a1cc51d6682ab68188c6518d1f6f.zip |
Notes
Diffstat (limited to 'net/netatalk3/Makefile')
-rw-r--r-- | net/netatalk3/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/netatalk3/Makefile b/net/netatalk3/Makefile index 0c7ccef40477..7da3c83cc619 100644 --- a/net/netatalk3/Makefile +++ b/net/netatalk3/Makefile @@ -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="" |