From owner-cvs-src@FreeBSD.ORG Tue Feb 28 06:39:20 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 EBEE816A420; Tue, 28 Feb 2006 06:39:19 +0000 (GMT) (envelope-from chris@haakonia.hitnet.rwth-aachen.de) Received: from ms-dienst.rz.rwth-aachen.de (ms-2.rz.RWTH-Aachen.DE [134.130.3.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A3CF43D46; Tue, 28 Feb 2006 06:39:19 +0000 (GMT) (envelope-from chris@haakonia.hitnet.rwth-aachen.de) Received: from circe (circe.rz.RWTH-Aachen.DE [134.130.3.36]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0IVD00AUDX5HL9@ms-dienst.rz.rwth-aachen.de>; Tue, 28 Feb 2006 07:39:18 +0100 (MET) Received: from talos.rz.RWTH-Aachen.DE ([134.130.3.22]) by circe (MailMonitor for SMTP v1.2.2 ) ; Tue, 28 Feb 2006 07:39:17 +0100 (MET) Received: from bigboss.hitnet.rwth-aachen.de (bigspace.hitnet.RWTH-Aachen.DE [137.226.181.2]) by smarthost.rwth-aachen.de (8.13.1/8.13.1/1) with ESMTP id k1S6dHVT021892; Tue, 28 Feb 2006 07:39:17 +0100 Received: from haakonia.hitnet.rwth-aachen.de ([137.226.181.92]) by bigboss.hitnet.rwth-aachen.de with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.50) id 1FDyVx-0003Lt-94; Tue, 28 Feb 2006 07:39:17 +0100 Received: by haakonia.hitnet.rwth-aachen.de (Postfix, from userid 1001) id 1E2F33F42F; Tue, 28 Feb 2006 07:39:17 +0100 (CET) Date: Tue, 28 Feb 2006 07:39:17 +0100 From: Christian Brueffer In-reply-to: <20060228063546.GA1898@haakonia.hitnet.RWTH-Aachen.DE> To: Marcel Moolenaar Message-id: <20060228063917.GB1898@haakonia.hitnet.RWTH-Aachen.DE> MIME-version: 1.0 Content-type: multipart/signed; boundary=H1spWtNR+x+ondvy; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.11 X-Operating-System: FreeBSD 6.1-PRERELEASE X-PGP-Key: http://people.FreeBSD.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200602272156.k1RLuOnF050808@repoman.freebsd.org> <20060228011204.GA56781@ns1.xcllnt.net> <20060228011935.GA26407@xor.obsecurity.org> <20060228013742.GA56890@ns1.xcllnt.net> <20060228063546.GA1898@haakonia.hitnet.RWTH-Aachen.DE> Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org, Kris Kennaway Subject: Re: cvs commit: src/share/man/man4 ddb.4 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, 28 Feb 2006 06:39:20 -0000 --H1spWtNR+x+ondvy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 28, 2006 at 07:35:46AM +0100, Christian Brueffer wrote: > On Mon, Feb 27, 2006 at 05:37:42PM -0800, Marcel Moolenaar wrote: > > On Mon, Feb 27, 2006 at 08:19:36PM -0500, Kris Kennaway wrote: > > > On Mon, Feb 27, 2006 at 05:12:04PM -0800, Marcel Moolenaar wrote: > > > > On Mon, Feb 27, 2006 at 09:56:24PM +0000, Christian Brueffer wrote: > > > > > brueffer 2006-02-27 21:56:24 UTC > > > > >=20 > > > > > FreeBSD src repository (doc committer) > > > > >=20 > > > > > Modified files: > > > > > share/man/man4 ddb.4=20 > > > > > Log: > > > > > DDB depends on KDB for some time now. > > > >=20 > > > > That's not true. Option KDB means that you want to have debugging > > > > code included when source contains it. Option DDB means that you > > > > want the DDB debugger backend. You can have DDB without KDB and > > > > vice versa. > > >=20 > > > ISTR DDB doesn't compile without KDB. > >=20 > > I'm not aware of any breakages. I even tested it just now. I quick > > grep for KDB in DDB related sources yields: > >=20 > > 6.x: > >=20 > > % grep KDB */*/db_* ddb/* > > arm/arm/db_interface.c:#ifdef KDB > > ddb/db_main.c:KDB_BACKEND(ddb, db_init, db_trace_self, db_trap); > >=20 > > 7.x: > >=20 > > % grep KDB */*/db_* ddb/* > > arm/arm/db_interface.c:#ifdef KDB > > ddb/db_main.c:KDB_BACKEND(ddb, db_init, db_trace_self, db_trap); > >=20 > > Only arm refers to KDB and it's doing that bogusly. > >=20 >=20 > Well, before committing I build a RELENG_6 kernel with DDB and without > KDB to make sure, and it stopped, telling me that DDB depends on KDB. >=20 I forgot to say, i386 kernel. Can't test CURRENT right now. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --H1spWtNR+x+ondvy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.1 (FreeBSD) iD8DBQFEA/AVbHYXjKDtmC0RAoKPAJ9xOrUlQHalbvAPPSEdcMPDO8WJZgCgqCN+ WZavpTV5GycvzJZvDsKemas= =Z33a -----END PGP SIGNATURE----- --H1spWtNR+x+ondvy--