From owner-cvs-all@FreeBSD.ORG Tue Feb 1 10:50:38 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E438716A4CE; Tue, 1 Feb 2005 10:50:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97F3643D48; Tue, 1 Feb 2005 10:50:37 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j11AobBr039943; Tue, 1 Feb 2005 10:50:37 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j11Aob36039942; Tue, 1 Feb 2005 10:50:37 GMT (envelope-from harti) Message-Id: <200502011050.j11Aob36039942@repoman.freebsd.org> From: Hartmut Brandt Date: Tue, 1 Feb 2005 10:50:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: 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... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Feb 2005 10:50:38 -0000 harti 2005-02-01 10:50:37 UTC FreeBSD src repository Modified files: usr.bin/make arch.c buf.c buf.h compat.c cond.c config.h dir.c dir.h for.c hash.c hash.h job.c job.h lst.h main.c make.c make.h nonints.h parse.c pathnames.h sprite.h str.c suff.c targ.c util.c var.c var.h var_modify.c usr.bin/make/lst.lib lstAppend.c lstConcat.c lstDeQueue.c lstDestroy.c lstDupl.c lstFindFrom.c lstForEachFrom.c lstInsert.c lstMember.c lstRemove.c Added files: usr.bin/make GNode.h arch.h compat.h cond.h for.h globals.h parse.h str.h suff.h targ.h util.h Log: Clean up include files and file including. Split nonints.h into pieces that get included just where they are needed. All headers include the headers that they need to compile (just with an empty .c file). Sort includes alphabetically where apropriate and fix some duplicate commenting for struct Job, struct GNode and struct Shell by removing one version and inlining the comments into the structure declaration (the comments have been somewhat outdated). This patch does not contain functional changes (checked with md5). Submitted by: Max Okumoto Revision Changes Path 1.1 +162 -0 src/usr.bin/make/GNode.h (new) 1.44 +23 -16 src/usr.bin/make/arch.c 1.1 +58 -0 src/usr.bin/make/arch.h (new) 1.25 +6 -3 src/usr.bin/make/buf.c 1.17 +19 -6 src/usr.bin/make/buf.h 1.44 +23 -14 src/usr.bin/make/compat.c 1.1 +49 -0 src/usr.bin/make/compat.h (new) 1.34 +16 -7 src/usr.bin/make/cond.c 1.1 +54 -0 src/usr.bin/make/cond.h (new) 1.16 +6 -1 src/usr.bin/make/config.h 1.46 +15 -4 src/usr.bin/make/dir.c 1.17 +16 -14 src/usr.bin/make/dir.h 1.29 +15 -11 src/usr.bin/make/for.c 1.1 +47 -0 src/usr.bin/make/for.h (new) 1.1 +124 -0 src/usr.bin/make/globals.h (new) 1.24 +7 -3 src/usr.bin/make/hash.c 1.19 +6 -4 src/usr.bin/make/hash.h 1.72 +15 -7 src/usr.bin/make/job.c 1.30 +127 -102 src/usr.bin/make/job.h 1.27 +6 -8 src/usr.bin/make/lst.h 1.17 +4 -1 src/usr.bin/make/lst.lib/lstAppend.c 1.20 +3 -0 src/usr.bin/make/lst.lib/lstConcat.c 1.16 +3 -0 src/usr.bin/make/lst.lib/lstDeQueue.c 1.21 +3 -0 src/usr.bin/make/lst.lib/lstDestroy.c 1.21 +3 -0 src/usr.bin/make/lst.lib/lstDupl.c 1.19 +3 -0 src/usr.bin/make/lst.lib/lstFindFrom.c 1.18 +4 -0 src/usr.bin/make/lst.lib/lstForEachFrom.c 1.17 +3 -0 src/usr.bin/make/lst.lib/lstInsert.c 1.14 +3 -0 src/usr.bin/make/lst.lib/lstMember.c 1.18 +4 -0 src/usr.bin/make/lst.lib/lstRemove.c 1.112 +23 -13 src/usr.bin/make/main.c 1.32 +14 -5 src/usr.bin/make/make.c 1.29 +13 -256 src/usr.bin/make/make.h 1.30 +3 -96 src/usr.bin/make/nonints.h 1.69 +20 -6 src/usr.bin/make/parse.c 1.1 +75 -0 src/usr.bin/make/parse.h (new) 1.13 +7 -6 src/usr.bin/make/pathnames.h 1.14 +6 -8 src/usr.bin/make/sprite.h 1.36 +8 -1 src/usr.bin/make/str.c 1.1 +66 -0 src/usr.bin/make/str.h (new) 1.40 +17 -5 src/usr.bin/make/suff.c 1.1 +60 -0 src/usr.bin/make/suff.h (new) 1.35 +13 -6 src/usr.bin/make/targ.c 1.1 +73 -0 src/usr.bin/make/targ.h (new) 1.14 +6 -9 src/usr.bin/make/util.c 1.1 +90 -0 src/usr.bin/make/util.h (new) 1.59 +16 -8 src/usr.bin/make/var.c 1.4 +25 -0 src/usr.bin/make/var.h 1.8 +10 -8 src/usr.bin/make/var_modify.c