Is this working looking into? The programs generally work ok, so this is
more for interests sake.
# ldd /usr/lib64/firefox/plugin-container | grep not
libmozalloc.so => not found
libxul.so => not found
# ldd /usr/lib64/thunderbird/plugin-container | grep not
libxul.so => not found
# find /usr/lib64/ -name libmozalloc.so
/usr/lib64/firefox/libmozalloc.so
/usr/lib64/thunderbird/libmozalloc.so
# find /usr/lib64/ -name libxul.so
/usr/lib64/firefox/libxul.so
/usr/lib64/thunderbird/libxul.so
# ldconfig -p | egrep '(firefox|thunderbird)'
So the libraries are there but not in the list of directories searched. I
could do something like
# echo "/usr/lib64/firefox" > /etc/ld.so.conf.d/06firefox.conf && env-update
but then thunderbird may get firefox's version of libxul which may be
incompatible, right?
Thanks