Rick Jones <rick.jones2@hp.com> wrote:
> My first guess then would be that you have another dependency to
> satisfy.
BTW, some things I find helpful when trying to track-down misssing
functions includes:
find /usr/include -exec grep -l <func> {} \;
and
cd /usr/lib
for i in *.sl (or .so etc)
do
echo $i
nm $i | grep -i <func>
done
that will sometimes find me include files that I forgot to include and
or libraries I forgot to link.
rick jones
--
firebug n, the idiot who tosses a lit cigarette out his car window
these opinions are mine, all mine; HP might not want them anyway...

feel free to post, OR email to rick.jones2 in hp.com but NOT BOTH...