From owner-svn-src-head@FreeBSD.ORG Fri Dec 7 16:05:05 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FE9A3E9; Fri, 7 Dec 2012 16:05:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 243BF8FC14; Fri, 7 Dec 2012 16:05:05 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qB7G559j033850; Fri, 7 Dec 2012 16:05:05 GMT (envelope-from erwin@svn.freebsd.org) Received: (from erwin@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB7G54LE033849; Fri, 7 Dec 2012 16:05:04 GMT (envelope-from erwin@svn.freebsd.org) Message-Id: <201212071605.qB7G54LE033849@svn.freebsd.org> From: Erwin Lansing Date: Fri, 7 Dec 2012 16:05:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r243987 - head/lib/bind X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Dec 2012 16:05:05 -0000 Author: erwin Date: Fri Dec 7 16:05:04 2012 New Revision: 243987 URL: http://svnweb.freebsd.org/changeset/base/243987 Log: Re-disable GSSAPI, which does not build on several archs. Approved by: delphij (mentor) Modified: head/lib/bind/config.mk Modified: head/lib/bind/config.mk ============================================================================== --- head/lib/bind/config.mk Fri Dec 7 14:26:12 2012 (r243986) +++ head/lib/bind/config.mk Fri Dec 7 16:05:04 2012 (r243987) @@ -27,10 +27,10 @@ INTERNALLIB= .endif .endif -# Enable GSSAPI support if available -.if ${MK_KERBEROS} != "no" -CFLAGS+= -DGSSAPI -.endif +# GSSAPI support is incomplete in 9.3.0 +#.if ${MK_KERBEROS} != "no" +#CFLAGS+= -DGSSAPI +#.endif # Enable IPv6 support if available .if ${MK_INET6_SUPPORT} != "no"