7 hours ago, Scura said:
The "ldd" command show me the current not found dependencies:
2
apr and apr-util are both required by log4cxx (shared version of both libs may be required at runtime unless u linked statically both libs built with -Bstatic).
A "fast way" to get shared prebuilt libs (x86) is by installing devel packs (from stock centos repos):
//Assuming you are under centOS 7 x64
cat /etc/centos-release
CentOS Linux release 7.9.2009 (Core)
//Install apr + apr-util prebuilt libs (x86)
sudo yum -y install apr-devel.i686 apr-util-devel.i686
//Make sure both .so files are located under /usr/lib/
repoquery --installed -l apr-devel.i686
repoquery --installed -l apr-util-devel.i686
/usr/lib/libapr-1.so
/usr/lib/libaprutil-1.so
Another way would be building the libs (shared version) by yourself and installing both into your system (e.g: under
/usr/lib).
Check here for log4cxx dependencies:
2
For mysqlclientlib, a fast way should be installing MySQL-shared-compat (x86).