From owner-cvs-src@FreeBSD.ORG Tue Aug 1 01:21:41 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B360816A4DD; Tue, 1 Aug 2006 01:21:41 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (vc4-2-0-87.dsl.netrack.net [199.45.160.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 212E343D6A; Tue, 1 Aug 2006 01:21:37 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (localhost.village.org [127.0.0.1] (may be forged)) by harmony.bsdimp.com (8.13.4/8.13.4) with ESMTP id k711IpXf033027; Mon, 31 Jul 2006 19:18:51 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 31 Jul 2006 19:19:13 -0600 (MDT) Message-Id: <20060731.191913.139568459.imp@bsdimp.com> To: yar@comp.chem.msu.su From: "M. Warner Losh" In-Reply-To: <20060731170830.GC50797@comp.chem.msu.su> References: <200607311320.k6VDKihd025119@repoman.freebsd.org> <44CE3042.8060509@errno.com> <20060731170830.GC50797@comp.chem.msu.su> X-Mailer: Mew version 4.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (harmony.bsdimp.com [127.0.0.1]); Mon, 31 Jul 2006 19:18:51 -0600 (MDT) Cc: sam@errno.com, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-src@FreeBSD.org Subject: Re: cvs commit: src/libexec/telnetd Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Aug 2006 01:21:41 -0000 In message: <20060731170830.GC50797@comp.chem.msu.su> Yar Tikhiy writes: : On Mon, Jul 31, 2006 at 09:30:58AM -0700, Sam Leffler wrote: : > Yar Tikhiy wrote: : > > yar 2006-07-31 13:20:44 UTC : > > : > > FreeBSD src repository : > > : > > Modified files: : > > libexec/telnetd Makefile : > > Log: : > > telnetd(8) doesn't really go to the crunched floppies, : > > so its Makefile needn't test for RELEASE_CRUNCH. : > : > What about folks building crunchgen'd images w/ telnetd; is there an : > equivalent way to do the same thing w/ the new build knobs? : : I'd suggest using WITHOUT_CRYPT=yes, it will have the same effect : for telnetd. Anyway, the RELEASE_CRUNCH knob's coverage is rather : limited, it's respected by only those parts of src/ that are included : in the standard boot floppies--telnetd was just an exception. The : other exception is inetd, which puts its IPSEC stuff under : RELEASE_CRUNCH. The better way would be to introduce the : MK_IPSEC_SUPPORT knob. RELEASE_CRUNCH could be mostly handled in : a single place then. Few tools build in a really special way if : RELEASE_CRUNCH is defined; most tools just have crypto, IPX etc : stuff omitted from them. We should test "MK_CRYPT" or "MK_IPSEC_SUPPORT" in the makefiles, set via WITH/WITHOUT_CRYPT/IPSEC_SUPPORT in configuration files. Warner