php编译mysql configure: error: mysql configure failed. Please check config.log for more information


php编译mysql configure: error: mysql configure failed. Please check config.log for more information
2011年11月16日
  php编译mysql
  configure: error: mysql configure failed. Please check config.log for more information.
  root@test_03:~/php-5.2.10# ./configure --help |grep mysql
  --with-mysql[=DIR]      Include MySQL support. DIR is the MySQL base directory
  郁闷的是..被误导了.其实是要--with-mysql-dir=XXX
  原配置信息如下,出错:
  ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs  --with-xml --with-mysql=/usr/ --with-config-file-path=/usr/local/lib -enable-track-vars --enable-sockets --with-zlib
  修改配置如下,成功编译安装:
  ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs  --with-xml --with-mysql-dir=/usr/ --with-config-file-path=/usr/local/lib -enable-track-vars --enable-sockets --with-zlib
  红色字体不同,导致出错。
  系统为Centos 5.2 64位系统。

猜你喜欢

转载自rhj485hm.iteye.com/blog/1359472