
12-04-2010, 05:39 PM
|
|
LiteSpeed Staff
|
|
Join Date: May 2003
Location: New Jersey
Posts: 7,585
|
|
Digging a little bit deeper on this, came cross http://www.eyrie.org/~eagle/notes/rpath.html
I think something wrong with RPATH built into the binary, it can be checked with
Code:
readelf -d lsphp5 | grep RPATH
If somehow /usr/lib(64) got into RPATH before /opt/xml/lib, it could cause wrong library loaded. there is a tool called "patchelf" which can update RPATH built into ELF binary.
http://nixos.org/patchelf.html
The root cause might be the GNU build tool chain, autoconf, libtool, etc.
|