From owner-cvs-src@FreeBSD.ORG Wed Dec 8 12:59:27 2004 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 71F9816A4CF; Wed, 8 Dec 2004 12:59:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59BFD43D2F; Wed, 8 Dec 2004 12:59:27 +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 iB8CxRwF066970; Wed, 8 Dec 2004 12:59:27 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iB8CxRh5066969; Wed, 8 Dec 2004 12:59:27 GMT (envelope-from harti) Message-Id: <200412081259.iB8CxRh5066969@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 8 Dec 2004 12:59:27 +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 arch.c cond.c dir.c job.c lst.h main.c suff.c var.c src/usr.bin/make/lst.lib lstFindFrom.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Wed, 08 Dec 2004 12:59:27 -0000 harti 2004-12-08 12:59:27 UTC FreeBSD src repository Modified files: usr.bin/make arch.c cond.c dir.c job.c lst.h main.c suff.c var.c usr.bin/make/lst.lib lstFindFrom.c Log: Constify the arguments to the list compare function. This temporarily requires to make a copy of the filename in ReadMakefile and to duplicate two small functions in suff.c. This hopefully will go away when everything is constified. Submitted by: Max Okumoto (partly) Revision Changes Path 1.40 +3 -3 src/usr.bin/make/arch.c 1.32 +2 -3 src/usr.bin/make/cond.c 1.41 +2 -3 src/usr.bin/make/dir.c 1.67 +2 -3 src/usr.bin/make/job.c 1.21 +2 -2 src/usr.bin/make/lst.h 1.18 +1 -1 src/usr.bin/make/lst.lib/lstFindFrom.c 1.107 +4 -3 src/usr.bin/make/main.c 1.35 +32 -18 src/usr.bin/make/suff.c 1.55 +2 -3 src/usr.bin/make/var.c