From owner-cvs-src@FreeBSD.ORG Tue Feb 1 11:37:03 2005 Return-Path: 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 392C516A4CF; Tue, 1 Feb 2005 11:37:03 +0000 (GMT) Received: from smtp-1.dlr.de (smtp-1.dlr.de [195.37.61.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F9E143D53; Tue, 1 Feb 2005 11:37:01 +0000 (GMT) (envelope-from Hartmut.Brandt@dlr.de) Received: from beagle.kn.op.dlr.de ([129.247.173.6]) by smtp-1.dlr.de over TLS secured channel with Microsoft SMTPSVC(5.0.2195.6713); Tue, 1 Feb 2005 12:36:59 +0100 Date: Tue, 1 Feb 2005 12:38:23 +0100 (CET) From: Harti Brandt X-X-Sender: brandt_h@beagle.kn.op.dlr.de To: src-committers@FreeBSD.org In-Reply-To: <200502011050.j11Aob36039942@repoman.freebsd.org> Message-ID: <20050201123549.T36875@beagle.kn.op.dlr.de> References: <200502011050.j11Aob36039942@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-OriginalArrivalTime: 01 Feb 2005 11:36:59.0814 (UTC) FILETIME=[577DF460:01C50852] cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make GNode.h arch.c arch.h buf.c buf.h compat.c compat.h cond.c cond.h config.h dir.c dir.h for.c for.h globals.h hash.c hash.h job.c job.h lst.h main.c make.c make.h nonints.h parse.c parse.h pathnames.h sprite.h str.c str.h suff.c ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt 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 Feb 2005 11:37:03 -0000 These changes and upcoming patches are synchronized with DragonFly BSD. Max also tries to convince the NetBSD people to adopt changes (if things don't conflict). harti On Tue, 1 Feb 2005, Hartmut Brandt wrote: HB>harti 2005-02-01 10:50:37 UTC HB> HB> FreeBSD src repository HB> HB> Modified files: HB> usr.bin/make arch.c buf.c buf.h compat.c cond.c HB> config.h dir.c dir.h for.c hash.c hash.h HB> job.c job.h lst.h main.c make.c make.h HB> nonints.h parse.c pathnames.h sprite.h HB> str.c suff.c targ.c util.c var.c var.h HB> var_modify.c HB> usr.bin/make/lst.lib lstAppend.c lstConcat.c lstDeQueue.c HB> lstDestroy.c lstDupl.c lstFindFrom.c HB> lstForEachFrom.c lstInsert.c lstMember.c HB> lstRemove.c HB> Added files: HB> usr.bin/make GNode.h arch.h compat.h cond.h for.h HB> globals.h parse.h str.h suff.h targ.h HB> util.h HB> Log: HB> Clean up include files and file including. Split nonints.h into pieces HB> that get included just where they are needed. All headers include the HB> headers that they need to compile (just with an empty .c file). Sort HB> includes alphabetically where apropriate and fix some duplicate commenting HB> for struct Job, struct GNode and struct Shell by removing one version and HB> inlining the comments into the structure declaration (the comments have been HB> somewhat outdated). HB> HB> This patch does not contain functional changes (checked with md5). HB> HB> Submitted by: Max Okumoto ...