安装php5出现 mysql configure failed

安装PHP5时出现了错误。
configure: error: mysql configure failed. Please check config.log for more information.
./configure –prefix=/usr/local/php –with-apxs2=/usr/local/apache2/bin/apxs –with-gd –with-jpeg-dir –with-zlib-dir –with-png-dir –with-ttf –with-mysql enable-track-vars 出现的问题。

如果是自己选择GZ包安装的MYSQL。这里要加路径。
加的方法为–with-mysql-dir=/user/local/mysql
切记不可写为:–with-mysql=/user/local/mysql

1 comment

  1. 不好意思,误导大家了,我自己也是被误导了。PHP 的 ./configure 根本不支持 –with-mysql-dir,至少 5.1 的版本是不支持的,这么写只会被忽略掉 MySQL 的库文件检查,跳过那个错误而已。

    我遇到这个问题是因为在 64 位的 Linux 系统下装的二进制版本的MySQL,PHP 编译遇到 MySQL 就是过不去。

    换成 MySQL 5.0 源码方式编译安装后,再编译 PHP5 ,并把 –with-mysql 配置到 MySQL 的安装路径即可。

    留下这个错误的 Blog 并写下这个回复就是提醒大家不要被误导!

Leave a Reply

Your email address will not be published.

*