Hi everyone!
I'm building a Zabbix server and I've ran into a stumbling block. I'm using mysql-5.5.9 compiled from source. This installs libmysqlclient.so.16.
As per Rihard's nice book, I would like to install php-mysql. So I downloaded the rpm. But it installs a shared object called mysql.so which looks for libmysqlclient.so.15 and does not work with libmysqlclient.so.16.
So I figured I would download the source for php-mysql and recompile it against mysql-5.5.9. I cannot find a standalone php-mysql source; instead only the php source. Which is okay.
But I'm having a heck of a time compiling it to produce the mysql.so file. I get a "php-mysql.lo" and "php-mysql.o" object files (which I assume is correct?) but I can't get libtool to generate a shared library.
Furthermore, it fails totally on the "mysqli" complaining about missing "replication headers" and such...
Any thoughts and help?
Thanks!
I'm building a Zabbix server and I've ran into a stumbling block. I'm using mysql-5.5.9 compiled from source. This installs libmysqlclient.so.16.
As per Rihard's nice book, I would like to install php-mysql. So I downloaded the rpm. But it installs a shared object called mysql.so which looks for libmysqlclient.so.15 and does not work with libmysqlclient.so.16.
So I figured I would download the source for php-mysql and recompile it against mysql-5.5.9. I cannot find a standalone php-mysql source; instead only the php source. Which is okay.
But I'm having a heck of a time compiling it to produce the mysql.so file. I get a "php-mysql.lo" and "php-mysql.o" object files (which I assume is correct?) but I can't get libtool to generate a shared library.
Furthermore, it fails totally on the "mysqli" complaining about missing "replication headers" and such...
Any thoughts and help?
Thanks!
Comment