You are not logged in.
Hi, when doing a prelink, the output tells me that:
prelink: /opt/mozilla/lib/xulrunner/libgtkembedmoz.so: Could not find one of the dependencies
What can I do to solve this dependence? What package I must install?
Greetings
Only deaths can see the end of battles.
Blog: http://djmartinez.co.cc -> The life of a Computer Engineer
Offline
The package xulrunner installs that file here : opt/mozilla/lib/xulrunner-1.8.1.6/libgtkembedmoz.so
Is xulrunner installed ?
What was the prelink command you used ?
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
xulrunner is installed.
prelink -amR
[davigetto@samantha ~]$ /opt/mozilla/lib/
firefox/ firefox-2.0.0.6/ plugins/ xulrunner-1.8.1.3/
firefox-2.0.0.3/ pkgconfig/ xulrunner/ xulrunner-1.8.1.6/
The older versions are not removed completely?
Last edited by Davigetto (2007-08-02 08:43:47)
Only deaths can see the end of battles.
Blog: http://djmartinez.co.cc -> The life of a Computer Engineer
Offline
try
ldd /opt/mozilla/lib/xulrunner/libgtkembedmoz.so
at the beginning I see
libxpcom.so => not found
libxul.so => not found
and
root@archlinux:~# locate libxul.so
/opt/mozilla/lib/xulrunner-1.8.1.5/libxul.so
so the library is there but /opt/mozilla/lib/xulrunner-1.8.1.5/ is not in /etc/ld.so.conf so it is not automatically found. This may not be a problem for the app using the lib, but prelink needs to know where to find the libraries. Maybe add the path to ld.so.conf.
Offline
adding the path doesn't work, the command "ldd /opt/mozilla/lib/xulrunner/libgtkembedmoz.so" outputs the same "not found", adding /opt/mozilla/lib/xulrunner-1.8.1.6/ to ld.so.conf
maybe it must be another file to edit?
Only deaths can see the end of battles.
Blog: http://djmartinez.co.cc -> The life of a Computer Engineer
Offline
did you run ldconfig after editing ld.so.conf?
Offline
now it worked with ldconfig , thank you very much, I have more questions about prelink but i will post them in another topic.
Greetings
Only deaths can see the end of battles.
Blog: http://djmartinez.co.cc -> The life of a Computer Engineer
Offline