On 8/25/09 6:28 AM, SimOut wrote: > When trying to start the application, I get this error: > ------------------ > error while loading shared libraries: libgtkembedmoz.so: cannot open > shared > object file: No such file or directory > ------------------ > > The source code worked in previous releases of XULRunner, but after > upgrading to 1.9.0.12 it does not work....
That's a very confusing error, because you didn't link against libgtkembedmoz.so, and none of the libs you are loading should have linked against it either, since it shouldn't exist any more! Are you sure that you are actually loading the 1.9.0.12 version of XULRunner at runtime, and not an earlier version? You might want to check the output of `ldd` on your binary and on various libraries it's loading to see where gtkembedmoz.so is listed. You can use the LD_DEBUG environment variable to trace and debug the loading of dynamic libraries: see `man ld` for details. --BDS _______________________________________________ dev-embedding mailing list [email protected] https://lists.mozilla.org/listinfo/dev-embedding
