From owner-cvs-src@FreeBSD.ORG Fri Jul 30 04:14:48 2004 Return-Path: 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 5412316A4D0; Fri, 30 Jul 2004 04:14:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 474F443D2F; Fri, 30 Jul 2004 04:14:48 +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 i6U4El0w068755; Fri, 30 Jul 2004 04:14:47 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6U4ElBw068754; Fri, 30 Jul 2004 04:14:47 GMT (envelope-from kientzle) Message-Id: <200407300414.i6U4ElBw068754@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 30 Jul 2004 04:14:47 +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/libarchivearchive_read_support_compression_all.c archive_read_support_compression_bzip2.c archive_write_set_compression_bzip2.c archive_write_set_compression_gzip.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Fri, 30 Jul 2004 04:14:48 -0000 kientzle 2004-07-30 04:14:47 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_compression_all.c archive_read_support_compression_bzip2.c archive_read_support_compression_gzip.c archive_write_set_compression_bzip2.c archive_write_set_compression_gzip.c Log: Conditionalize the bzip2/gzip compression/decompression code on the existence of the relevant libraries (actually, the existence of the include files). This will allow the library to be easily ported to systems that don't have these libraries. (Of course, it also means that clients using the library on such systems will not be able to take advantage of the automatic compression format detection.) Revision Changes Path 1.5 +5 -0 src/lib/libarchive/archive_read_support_compression_all.c 1.5 +6 -0 src/lib/libarchive/archive_read_support_compression_bzip2.c 1.6 +6 -0 src/lib/libarchive/archive_read_support_compression_gzip.c 1.5 +6 -0 src/lib/libarchive/archive_write_set_compression_bzip2.c 1.6 +6 -0 src/lib/libarchive/archive_write_set_compression_gzip.c