Hi Frans, On 8/6/06, Frans Fürst <[EMAIL PROTECTED]> wrote:
you were right, an older version was still installed to /usr/lib, so make instclean had no effect. But also version 1.1 didn't compile due to another problem: some libraries try to link against libungif. Is there a way to deactivate libungif-support? Due to conflicts with giflib libungif is not supported by gentoo. Gentoo users maybe have to reinstall giflib after installing libungif because of some confilicting headers.
The OpenSceneGraph/Make/dependencies file contains all the default dependencies that are assumed. You can disable them. By changing: LIBUNGIF_INSTALLED ?= yes To LIBUNGIF_INSTALLED ?= no Or just set an env variable LIBUNGIF_INSTALLED=no, or type: make LIBUNGIF_INSTALLED = no Or copy the depedencies file to something like mydependencies, and modify this, then tell the OSG where to find you depedency file via: export OSG_DEPENDENCIES=/path/to/mydependencies So.. you have a few options. However, I'd recommend trying to get libungif installed as the libgif plugin might not have all the required functions to support the OSG's plugin. Robert. _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/
