From owner-cvs-all@FreeBSD.ORG Sat Aug 14 03:45:45 2004 Return-Path: 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 EAF1616A4CE; Sat, 14 Aug 2004 03:45:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEFFB43D55; Sat, 14 Aug 2004 03:45:45 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3jjBJ018055; Sat, 14 Aug 2004 03:45:45 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3jjvc018054; Sat, 14 Aug 2004 03:45:45 GMT (envelope-from kientzle) Message-Id: <200408140345.i7E3jjvc018054@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Aug 2004 03:45:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile archive_private.h archive_read_support_compression_compress.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_string.c archive_string_sprintf.c archive_util.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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, 14 Aug 2004 03:45:46 -0000 kientzle 2004-08-14 03:45:45 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_private.h archive_read.c archive_read_support_compression_bzip2.c archive_read_support_compression_compress.c archive_read_support_compression_gzip.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_string.c archive_string_sprintf.c archive_util.c Log: Eliminate reliance on non-portable by implementing a very simple errx() function. Improve behavior when bzlib/zlib are missing by detecting and issuing an error message on attempts to read gzip/bzip2 compressed archives. Revision Changes Path 1.20 +1 -1 src/lib/libarchive/Makefile 1.15 +2 -0 src/lib/libarchive/archive_private.h 1.12 +8 -7 src/lib/libarchive/archive_read.c 1.6 +32 -9 src/lib/libarchive/archive_read_support_compression_bzip2.c 1.2 +2 -4 src/lib/libarchive/archive_read_support_compression_compress.c 1.7 +34 -10 src/lib/libarchive/archive_read_support_compression_gzip.c 1.11 +0 -1 src/lib/libarchive/archive_read_support_format_cpio.c 1.26 +10 -3 src/lib/libarchive/archive_read_support_format_tar.c 1.5 +4 -2 src/lib/libarchive/archive_string.c 1.4 +0 -1 src/lib/libarchive/archive_string_sprintf.c 1.8 +11 -1 src/lib/libarchive/archive_util.c