From owner-cvs-all@FreeBSD.ORG Sat Sep 10 22:58:09 2005 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 7783116A41F; Sat, 10 Sep 2005 22:58:09 +0000 (GMT) (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 90DD643D60; Sat, 10 Sep 2005 22:58:06 +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 j8AMw6Er079776; Sat, 10 Sep 2005 22:58:06 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j8AMw6g5079775; Sat, 10 Sep 2005 22:58:06 GMT (envelope-from kientzle) Message-Id: <200509102258.j8AMw6g5079775@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 10 Sep 2005 22:58:06 +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/lib/libarchive Makefile archive_entry.c archive_entry.h archive_private.h archive_read_support_format_tar.c archive_write_set_format_pax.c 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: Sat, 10 Sep 2005 22:58:09 -0000 kientzle 2005-09-10 22:58:06 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_entry.c archive_entry.h archive_private.h archive_read_support_format_tar.c archive_write_set_format_pax.c Log: Style issue: Don't include where it is not actually needed. (wchar_t is defined in stddef.h, and only two files need more than that.) Portability: Since the wchar requirements are really quite modest, it's easy to define basic replacements for wcslen, wcscmp, wcscpy, etc, for use on systems that lack . In particular, this allows libarchive to be used on older OpenBSD systems. Revision Changes Path 1.38 +1 -1 src/lib/libarchive/Makefile 1.30 +23 -1 src/lib/libarchive/archive_entry.c 1.17 +1 -2 src/lib/libarchive/archive_entry.h 1.19 +0 -2 src/lib/libarchive/archive_private.h 1.34 +24 -3 src/lib/libarchive/archive_read_support_format_tar.c 1.29 +0 -1 src/lib/libarchive/archive_write_set_format_pax.c