Quoting "Jon M. Taylor" <[EMAIL PROTECTED]>:
> Yep, that's what I'm seeing as well. I haven't been able to track
> down the problem yet. For now, I am hacking around the problem by
> manually editing Mesa/src/GGI/libMesaGGI.la and changing the line that
> reads:
>
> dependency_libs=' /usr/local/lib/libggi.la -lgii -lgg'
>
> to:
>
> dependency_libs=' -lggi -lgii -lgg'
I had a similar problem some time ago with the .la files.
The problem was: on 'make install' the lib paths
are not correclty set in lib*.la. They still point to the
lib in the build tree:
from /usr/local/lib/libgii.la:
---------
# Libraries that this one depends upon.
dependency_libs=' ../gg/.libs/libgg.so'
--------------
I don't know the actual reason but I had it working by manually
changing the dependencies in *.la
Hope it helps.
Regards.