From owner-freebsd-security Sat May 11 14: 8: 8 2002 Delivered-To: freebsd-security@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 8C39737B404; Sat, 11 May 2002 14:08:00 -0700 (PDT) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020511210800.WLTD10136.rwcrmhc51.attbi.com@blossom.cjclark.org>; Sat, 11 May 2002 21:08:00 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g4BL7xL09378; Sat, 11 May 2002 14:07:59 -0700 (PDT) (envelope-from cjc) Date: Sat, 11 May 2002 14:07:59 -0700 From: "Crist J. Clark" To: Marius Sorteberg Cc: "Jacques A. Vidrine" , freebsd-security@FreeBSD.org Subject: Re: How to remove Kerberos from base install Message-ID: <20020511140759.B2824@blossom.cjclark.org> References: <20020510093809.GA368@overalt.no> <20020510162535.GA52239@madman.nectar.cc> <200205110151.44504.marius@overalt.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200205110151.44504.marius@overalt.no>; from marius@overalt.no on Sat, May 11, 2002 at 01:51:44AM +0200 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-freebsd-security@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sat, May 11, 2002 at 01:51:44AM +0200, Marius Sorteberg wrote: [snip] > > > I have included this in my /etc/make.conf, so it wount be build during > > > the next make world. > > > > > > MAKE_KERBEROS4= false > > > MAKE_KERBEROS5= false > > > > I suggest you comment these out. These bits are only built if you > > define MAKE_KERBEROS4=yes and MAKE_KERBEROS5=yes in /etc/make.conf. > > Are you sure? I tought that the "#NOCRYPT= true" in the > /etc/defaults/make.conf, made the build world make all the src/crypto apps > (including Kerberos). > I tought that when not comment out the "NOCRYPT= true", but add > "MAKE_KERBEROS(5)4= false", it would build OpenSSL and OpenSSH, but not > KerberosVI and Heimdal. No, don't define 'MAKE_KERBEROS[45]' at all. Here is the makefile logic in src/Makefile.inc, .if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \ !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS4) SUBDIR+= kerberosIV .endif .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \ !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS5) SUBDIR+= kerberos5 .endif -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-security" in the body of the message