From owner-freebsd-ports@FreeBSD.ORG Fri Jun 3 20:00:58 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03C4516A41C for ; Fri, 3 Jun 2005 20:00:58 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EFB443D1D for ; Fri, 3 Jun 2005 20:00:57 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so848673wri for ; Fri, 03 Jun 2005 13:00:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=mFMF+PXgehM3WdkN/IWWioMRgfskg5X1wRWf+rvVtSBI6TBNiw8qP7OOoBEkKzcKZMMJ627l4Hz2mjeo9CKiABK92arhrGowxvnDFg+nIUD6VD07rjXKQ1DHbTSjI0BefgWpmSb/ee3cPI5cZM7F5TSKC2sMX5MRam9O2qtP6mA= Received: by 10.54.45.7 with SMTP id s7mr883863wrs; Fri, 03 Jun 2005 13:00:56 -0700 (PDT) Received: by 10.54.29.77 with HTTP; Fri, 3 Jun 2005 13:00:56 -0700 (PDT) Message-ID: <790a9fff0506031300756e6bda@mail.gmail.com> Date: Fri, 3 Jun 2005 15:00:56 -0500 From: Scot Hetzel To: Boris Samorodov In-Reply-To: <11516153@srv.sem.ipt.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <429D8B3B.50203@ng.fadesa.es> <29469499@srv.sem.ipt.ru> <429DE188.5020908@ng.fadesa.es> <09783236@srv.sem.ipt.ru> <429EE7D8.4050900@ng.fadesa.es> <65121725@srv.sem.ipt.ru> <42A025CA.2000107@ng.fadesa.es> <41916239@srv.sem.ipt.ru> <790a9fff05060309474f2f06eb@mail.gmail.com> <11516153@srv.sem.ipt.ru> Cc: fandino@ng.fadesa.es, freebsd-stable@freebsd.org, freebsd-ports@freebsd.org Subject: Re: kadmin (heimdal port) ignores the ldap backend X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Scot Hetzel List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jun 2005 20:00:58 -0000 On 6/3/05, Boris Samorodov wrote: > > I believe you have to set NO_KERBEROS in /etc/make.conf. Then rebuild > > & install the FreeBSD sources in /usr/src. Then after the > > installworld, you'll need to go to the /usr/lib directory and > > move/remove all libs that are older than the date of the install. >=20 > > NOTE: I would also do a second installworld, after removing the > > libraries. Just incase something was removed that wasn't supposed to > > be removed. >=20 > > Then install the KERBEROS hemidal port. >=20 > Hmm. And what about kerbesized applications (i.e. sshd) from the base > system which I'd like to use with kerberos authentication? >=20 looks like you would have to install them from ports, unless you hacked the sources to use KERBEROS installed from the port. src/secure/usr.bin/ssh/Makefile src/lib/libtelnet/Makefile src/lib/libpam/modules/modules.inc NOTE: there may be others You would have to change the files to check if the hemdial libraries are installed: .if (defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}/lib/libkrb5.so) ) || !defined(NO_KERBEROS) NOTE: you may also need to set LDFLAGS+=3D-L${HEIMDAL_HOME}/lib And see if it compiles. Scot