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
Tim Kientzle
kientzle at FreeBSD.org
Sat Sep 10 15:58:09 PDT 2005
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 <wchar.h> 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 <wchar.h>. 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
More information about the cvs-src
mailing list