Subject: Re: gnome compile errors.... Help!?
To: Charlie Root <root@CS670402-A.gvcl1.bc.wave.home.com>
From: Frederick Bruckman <fb@enteract.com>
List: netbsd-help
Date: 12/20/2000 13:51:30
On Wed, 20 Dec 2000, Charlie Root wrote:
> I have tried to reinstall esound, but the compile chokes on undefined
> variables. I think this means that there is yet another package that
> needs to be reinstalled and was hoping that someone knew which one. I
> downloaded the binaries for esound and installed them but the problem
> remains. Could the binaries at netbsd.org still be a.out?
1.4.x/i386 are a.out, 1.5/i386 are ELF. To see if you have any a.out
packages mixed into the ones you've already downloaded, you could run
pkg_info -B </path/to/pkg.tar.gz> | grep ^OBJECT_FMT
over them. Or here's a quick and dirty way to list any a.out packages
you have installed:
for p in /var/db/pkg/*-*; \
do if grep -q a.out <$p/+BUILD_INFO; then \
echo "`basename $p`"; \
fi; done
--
Frederick