From owner-cvs-src@FreeBSD.ORG Tue Mar 21 17:03:52 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org 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 1680516A400; Tue, 21 Mar 2006 17:03:52 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4C7043D45; Tue, 21 Mar 2006 17:03:51 +0000 (GMT) (envelope-from kientzle@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 k2LH3pcZ068383; Tue, 21 Mar 2006 17:03:51 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k2LH3pjw068382; Tue, 21 Mar 2006 17:03:51 GMT (envelope-from kientzle) Message-Id: <200603211703.k2LH3pjw068382@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 21 Mar 2006 17:03:51 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/tar Makefile bsdtar.c bsdtar.h bsdtar_platform.h getdate.y read.c tree.c util.c write.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 21 Mar 2006 17:03:52 -0000 kientzle 2006-03-21 17:03:51 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar.c bsdtar.h bsdtar_platform.h getdate.y read.c tree.c util.c write.c Log: Extended attribute support on write for Linux; FreeBSD hooks are forthcoming. This commit also has a number of style(9) fixes and minor corrections so the code works better with the build system being used for non-FreeBSD builds. Many thanks to: Jaakko Heinonen, who proposed a mechanism for extended attribute support and implemented both the machine-independent portion and the Linux-specific portion. Revision Changes Path 1.26 +1 -1 src/usr.bin/tar/Makefile 1.67 +1 -2 src/usr.bin/tar/bsdtar.c 1.24 +1 -1 src/usr.bin/tar/bsdtar.h 1.20 +8 -2 src/usr.bin/tar/bsdtar_platform.h 1.6 +3 -1 src/usr.bin/tar/getdate.y 1.25 +0 -2 src/usr.bin/tar/read.c 1.4 +1 -1 src/usr.bin/tar/tree.c 1.14 +0 -1 src/usr.bin/tar/util.c 1.45 +125 -12 src/usr.bin/tar/write.c