From owner-svn-ports-all@FreeBSD.ORG Sun Oct 28 00:57:30 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 531B010F; Sun, 28 Oct 2012 00:57:30 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 349A68FC0A; Sun, 28 Oct 2012 00:57:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9S0vUOB095394; Sun, 28 Oct 2012 00:57:30 GMT (envelope-from marcus@svn.freebsd.org) Received: (from marcus@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9S0vTx3095392; Sun, 28 Oct 2012 00:57:29 GMT (envelope-from marcus@svn.freebsd.org) Message-Id: <201210280057.q9S0vTx3095392@svn.freebsd.org> From: Joe Marcus Clarke Date: Sun, 28 Oct 2012 00:57:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306535 - head/net/netatalk3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2012 00:57:30 -0000 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=""