From owner-cvs-all@FreeBSD.ORG Thu Jan 26 04:47:54 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 9F76416A420; Thu, 26 Jan 2006 04:47:54 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20BAB43D45; Thu, 26 Jan 2006 04:47:54 +0000 (GMT) (envelope-from mux@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 k0Q4lsnV028467; Thu, 26 Jan 2006 04:47:54 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k0Q4lsWU028466; Thu, 26 Jan 2006 04:47:54 GMT (envelope-from mux) Message-Id: <200601260447.k0Q4lsWU028466@repoman.freebsd.org> From: Maxime Henrion Date: Thu, 26 Jan 2006 04:47:54 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: projects/csup attrstack.c config.c config.h diff.c keyword.c lister.c main.c misc.h pathcomp.c proto.c status.c stream.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 26 Jan 2006 04:47:54 -0000 mux 2006-01-26 04:47:53 UTC FreeBSD projects repository Modified files: csup attrstack.c config.c config.h diff.c keyword.c lister.c main.c misc.h pathcomp.c proto.c status.c stream.h Log: - In misc.h, if we're not compiling in a C99 environment, try to define the C99 uintXX_t types ourselves by aliasing them to the more portable u_intXX_t types, otherwise, just include stdint.h. - Stop including stdint.h everywhere else, and include misc.h if needed. - Remove many includes of sys/types.h that are not needed anymore; only keep the includes when we're going to include sys/stat.h afterwards. - Fix two places where we were include sys/queue.h instead of our queue.h include. With these fixes, the code builds under RELENG_4 again. Revision Changes Path 1.2 +0 -2 projects/csup/attrstack.c 1.35 +1 -1 projects/csup/config.c 1.25 +1 -1 projects/csup/config.h 1.18 +1 -2 projects/csup/diff.c 1.21 +0 -2 projects/csup/keyword.c 1.17 +0 -2 projects/csup/lister.c 1.22 +0 -3 projects/csup/main.c 1.18 +22 -0 projects/csup/misc.h 1.2 +0 -2 projects/csup/pathcomp.c 1.52 +2 -2 projects/csup/proto.c 1.4 +1 -3 projects/csup/status.c 1.18 +2 -0 projects/csup/stream.h