From owner-cvs-projects@FreeBSD.ORG Thu Jan 26 04:10:03 2006 Return-Path: X-Original-To: cvs-projects@FreeBSD.org Delivered-To: cvs-projects@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3901F16A477; Thu, 26 Jan 2006 04:10:03 +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 E817C43D46; Thu, 26 Jan 2006 04:10:02 +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 k0Q4A2uu018721; Thu, 26 Jan 2006 04:10:02 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k0Q4A2KN018720; Thu, 26 Jan 2006 04:10:02 GMT (envelope-from mux) Message-Id: <200601260410.k0Q4A2KN018720@repoman.freebsd.org> From: Maxime Henrion Date: Thu, 26 Jan 2006 04:10:02 +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 Makefile fattr.c fattr_bsd.h fattr_os.h fattr_posix.h X-BeenThere: cvs-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the projects tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jan 2006 04:10:03 -0000 mux 2006-01-26 04:10:02 UTC FreeBSD projects repository Modified files: csup Makefile fattr.c Added files: csup fattr_bsd.h fattr_posix.h Removed files: csup fattr_os.h Log: - Rename fattr_os.h to fattr_bsd.h. - Add fattr_posix.h for POSIX environments that don't support the BSD-like extended file flags (chflags(2)). - If the HAVE_FFLAGS macro is defined, we include fattr_bsd.h, otherwise we include fattr_posix.h. - Only compile in code that calls chflags() if HAVE_FFLAGS is defined. - Add -DHAVE_FFLAGS to the CFLAGS in the Makefile since it only supports BSD systems. Revision Changes Path 1.35 +2 -2 projects/csup/Makefile 1.24 +16 -1 projects/csup/fattr.c 1.1 +52 -0 projects/csup/fattr_bsd.h (new) 1.5 +0 -52 projects/csup/fattr_os.h (dead) 1.1 +48 -0 projects/csup/fattr_posix.h (new)