Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Oct 2012 00:57:29 +0000 (UTC)
From:      Joe Marcus Clarke <marcus@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306535 - head/net/netatalk3
Message-ID:  <201210280057.q9S0vTx3095392@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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=""



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210280057.q9S0vTx3095392>