./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 5.6.4时,使用`./configure`命令配置MySQL连接时遇到错误,提示找不到MySQL头文件。解决方案是去除指定的MySQL路径`/usr`,重新运行配置命令。更新后的命令移除了`/usr`,确保能正确找到MySQL的相关组件以完成编译。
3万+

被折叠的 条评论
为什么被折叠?



