From: Braden M. <br...@en...> - 2007-06-06 17:21:47
|
Thierry Thomas wrote: > Le Mar 5 jui 07 à 1:33:43 +0200, Braden McDaniel <br...@en...> > écrivait : > >> Note that libantlr is also a convenience library. The only difference >> between it and the gtkglext libraries that comes to mind is that >> libantlr is linked into a shared library (libopenvrml), while the >> gtkglext libraries are linked into an executable. >> >>> Note that it's not a >>> problem to install these libs manually, I was just curious. >> Well, I'm guessing it would be a problem if you tried to install >> gtkglext on your system as well. :-/ > > That was the problem: I had missed this dependency on gtkglext! Um... Well, the idea behind including gtkglext in the openvrml distribution and using its libraries as convenience libraries is that users shouldn't *have* to have gtkglext installed. > Anyway, I'm still getting these errors on models/warbird.wrl, but no > backtrace: the program exit after "Assertion failed". You will need to use gdb to get a backtrace. Easiest way is probably to attach gdb to the running process before you load warbird.wrl: $ gdb --pid=<openvrml-xembed-pid> (gdb) c [now go load warbird.wrl in openvrml-player and make it crash] (gdb) bt Braden |