PHP教程

编译PHP时提示:configure: error: Cannot find MySQL header files under /usr. 解决

本文主要是介绍编译PHP时提示:configure: error: Cannot find MySQL header files under /usr. 解决,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

./configure --prefix=/usr/local/php-5.6.4 --with-config-file-path=/usr/local/php-5.6.4/etc --with-mysql=/usr --with-mysqli=/usr/bin/mysql_config --enable-fpm

提示:configure: error: Cannot find MySQL header files under /usr.

去除 /usr

重新运行编译命令

./configure --prefix=/usr/local/php-5.6.4 --with-config-file-path=/usr/local/php-5.6.4/etc --with-mysql --with-mysqli=/usr/bin/mysql_config --enable-fpm

这篇关于编译PHP时提示:configure: error: Cannot find MySQL header files under /usr. 解决的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!