Sun 18 Sep 2005 05:04:59 PM UTC, comment #3:
Yes, this particular issue is solved in cvs.
Note that I had to copy the data directory over from the 0.3 tarball in order to have autogen.sh working. However, I assume it's more or less intended...
Unfortunately, this only lead me to further compiler complaints, which I am gradually trying to correct.
The first one concerned src/math/Vertex.hh :
on line 34,
extern "C" double sqrt(double);
must be replaced by :
extern "C" double sqrt(double) throw ();
That lead me to the next problem : ReadCal3d.hh wanted to include the non-existent header cal3d/cal3d.h . It was of course solved by installing cal3d. It would be nice to check for this in the configure script (and to adapt README.txt now that Cal3d supported is being implemented), but I'm not very familiar with autotools... I guess there must be a macro for this available somewhere but I didn't look for it.
Lastly, in src/helpers/GenericOctree-template.cpp on line 276, "blocks" is used before being declared a few lines later. Moving the declaration above it solved the problem.
Hey, that's it, it just compiled successfully ! Now let see how that beast runs :)
|