13

我试图使用此配置PHP 5.2.17从源代码构建:Ubuntu 12.4 64bit

./configure --prefix=/opt/php5.2 --with-config-file-path=/opt/php5.2 --with-mysql 

但我不断收到此错误:

configure: error: Cannot find libmysqlclient under /usr.
Note that the MySQL client library is not bundled anymore!

任何想法如何解决这个问题?

EDIT1:我最小化了配置命令,所以它只关注mysql。我也在运行 64 位版本的 ubuntu。

EDIT2:尝试运行ldconfig -v |grep mysql,这是输出

# ldconfig -v |grep mysql
/sbin/ldconfig.real: Path `/lib/x86_64-linux-gnu' given more than once
/sbin/ldconfig.real: Path `/usr/lib/x86_64-linux-gnu' given more than once
/sbin/ldconfig.real: Cannot stat /usr/lib/x86_64-linux-gnu/libnss_db.so: No such file or directory
libmysqlclient.so.18 -> libmysqlclient_r.so.18.0.0
libmysqlpp.so.3 -> libmysqlpp.so.3.1.0
4

2 回答 2

21

感谢@hakre 的帮助。这是我使用的命令,它有效:

sudo ./configure --prefix=/opt/php5.2 --with-config-file-path=/opt/php5.2 --with-mysql --with-libdir=/lib/x86_64-linux-gnu
于 2012-06-21T09:16:45.987 回答
5

也许对于一些可怜的灵魂来说,这会起作用:

./configure --with-apxs2=/usr/sbin/apxs --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd

于 2015-04-08T13:24:47.840 回答