From owner-cvs-src@FreeBSD.ORG Thu Apr 15 18:45:19 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 104FA16A4CE; Thu, 15 Apr 2004 18:45:19 -0700 (PDT) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 941D943D53; Thu, 15 Apr 2004 18:45:18 -0700 (PDT) (envelope-from tim@kientzle.com) Received: from kientzle.com (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id i3G1jI90040419; Thu, 15 Apr 2004 18:45:18 -0700 (PDT) (envelope-from tim@kientzle.com) Message-ID: <407F3AAB.8080805@kientzle.com> Date: Thu, 15 Apr 2004 18:45:15 -0700 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031006 X-Accept-Language: en-us, en MIME-Version: 1.0 To: wsk References: <407F36C7.1010305@gddsn.org.cn> In-Reply-To: <407F36C7.1010305@gddsn.org.cn> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: kientzle@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h util.c write.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, 16 Apr 2004 01:45:19 -0000 You probably have an old version of libarchive that's getting in the way. First, delete all old versions of libarchive: rm -f /usr/lib/libarchive* Then re-install libarchive: ( cd /usr/src/lib/libarchive ; make clean all install ) It should work now. Tim Kientzle wsk wrote: > hi, why i can't build the bsdtar? any ideas? > 1. build libarchive etc sucessed > 2. (cd /usr/src/usr.bin/tar;make clean;make) get errors: > wsk# make > cc -O -pipe -Wsystem-headers -Werror -Wall -Wno-format-y2k -W > -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type > -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align > -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -o bsdtar > bsdtar.o matching.o read.o util.o write.o -larchive -lbz2 -lz > write.o: In function `tar_mode_r': > write.o(.text+0x19a): undefined reference to `archive_read_open_fd' > write.o(.text+0x259): undefined reference to `archive_write_open_fd' > write.o: In function `tar_mode_u': > write.o(.text+0x31e): undefined reference to `archive_read_open_fd' > write.o(.text+0x363): undefined reference to `archive_entry_mtime_nsec' > write.o(.text+0x372): undefined reference to `archive_entry_mtime' > write.o(.text+0x426): undefined reference to `archive_write_open_fd' > write.o: In function `append_archive': > write.o(.text+0x83e): undefined reference to `archive_entry_mtime_nsec' > write.o(.text+0x850): undefined reference to `archive_entry_mtime' > write.o: In function `lookup_hardlink': > write.o(.text+0x13a0): undefined reference to `archive_entry_copy_hardlink' > write.o: In function `setup_acls': > write.o(.text+0x14c0): undefined reference to `archive_entry_acl_clear' > write.o: In function `setup_acl': > write.o(.text+0x1675): undefined reference to `archive_entry_acl_add_entry' > *** Error code 1 > > Stop in /usr/src/usr.bin/tar.