From owner-freebsd-hackers@FreeBSD.ORG Fri Oct 17 16:08:59 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D004E16A4BF for ; Fri, 17 Oct 2003 16:08:59 -0700 (PDT) Received: from kientzle.com (h-66-166-149-50.SNVACAID.covad.net [66.166.149.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1602C43FB1 for ; Fri, 17 Oct 2003 16:08:59 -0700 (PDT) (envelope-from kientzle@acm.org) Received: from acm.org ([66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id h9HN8tkX079190; Fri, 17 Oct 2003 16:08:55 -0700 (PDT) (envelope-from kientzle@acm.org) Message-ID: <3F907686.8020500@acm.org> Date: Fri, 17 Oct 2003 16:08:54 -0700 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031006 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Adil Katchi References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: "'freebsd-hackers@freebsd.org'" Subject: Re: building sshd X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: kientzle@acm.org List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Oct 2003 23:08:59 -0000 Adil Katchi wrote: > I'm trying to build sshd from src/crypto/openssh and I'm having problems. > I've only modified auth2.c. I've followed the FREEBSD-upgrade instructions. I think what you want is more like: cd /usr/src/secure/usr.sbin/sshd && make && make install (You might need to do a full buildworld first.) Don't be confused by any extra Makefiles you might see floating around: * the openssh source code is in /usr/src/crypto/openssh * the build harness for sshd is in /usr/src/secure/usr.sbin/sshd The separation helps to address problems with updating OpenSSH (which is, after all, being maintained by someone else) and makes it easier to satisfy various cryptography laws. Tim Kientzle