svn commit: r306535 - head/net/netatalk3

Joe Marcus Clarke marcus at FreeBSD.org
Sun Oct 28 00:57:30 UTC 2012


Author: marcus
Date: Sun Oct 28 00:57:29 2012
New Revision: 306535
URL: http://svn.freebsd.org/changeset/ports/306535

Log:
  Add a knob to control Kerberos support.
  
  Feature safe:	yes

Modified:
  head/net/netatalk3/Makefile

Modified: head/net/netatalk3/Makefile
==============================================================================
--- head/net/netatalk3/Makefile	Sat Oct 27 22:59:25 2012	(r306534)
+++ head/net/netatalk3/Makefile	Sun Oct 28 00:57:29 2012	(r306535)
@@ -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=""


More information about the svn-ports-head mailing list