From owner-cvs-src-old@FreeBSD.ORG Sat May 7 10:23:17 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AD0AF106564A for ; Sat, 7 May 2011 10:23:17 +0000 (UTC) (envelope-from kaiw@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 9B7CC8FC0C for ; Sat, 7 May 2011 10:23:17 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p47ANHuE075729 for ; Sat, 7 May 2011 10:23:17 GMT (envelope-from kaiw@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p47ANHbj075728 for cvs-src-old@freebsd.org; Sat, 7 May 2011 10:23:17 GMT (envelope-from kaiw@repoman.freebsd.org) Message-Id: <201105071023.p47ANHbj075728@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kaiw@repoman.freebsd.org using -f From: Kai Wang Date: Sat, 7 May 2011 10:23:07 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/usr.bin/ar Makefile acpyacc.y ar.1 ar.c ar.h read.c write.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 10:23:17 -0000 kaiw 2011-05-07 10:23:07 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) usr.bin/ar Makefile acpyacc.y ar.1 ar.c ar.h read.c write.c Log: SVN rev 221587 on 2011-05-07 10:23:07Z by kaiw MFC r208189: Removed ar(1)'s support for compressed archives. This change removes ar(1)'s dependencies on compressor libraries -lz, -lbz2 and -llzma and fixes building HEAD on some versions of FreeBSD[78]. Option -j and -z is now accepted but ignored. Compressed ar(1) archives are not useful without a ld(1) that can read them. Also, the current ar(1) compression scheme prevents random access of archive members and needs to be redesigned anyway. Revision Changes Path 1.22.2.3 +2 -9 src/usr.bin/ar/Makefile 1.1.2.3 +1 -1 src/usr.bin/ar/acpyacc.y 1.20.2.4 +3 -5 src/usr.bin/ar/ar.1 1.20.2.2 +2 -2 src/usr.bin/ar/ar.c 1.4.2.2 +0 -1 src/usr.bin/ar/ar.h 1.1.2.3 +1 -1 src/usr.bin/ar/read.c 1.6.2.2 +2 -28 src/usr.bin/ar/write.c