一、PHP configure: error: Cannot find ldap libraries in /usr/lib
今天在CentOS 64位下编译安装PHP5.4.8。结果在configure的时候提示 configure: error: Cannot find ldap libraries in /usr/lib 提示在/usr/lib 下找不到相关模块,这是因为64位的linux默认把以上文件都存在 /usr/lib64 文件夹下。
解决方法:
代码如下:
重新configure即可
二、PDO_MysqL make: *** [pdo_MysqL.lo] Error 1
代码如下:
MysqL-1.0.2/pdo_MysqL.c:31:
/data0/software/PDO_MysqL-1.0.2/PHP_pdo_MysqL_int.h:25:19: error: MysqL.h: No such file or directory
In file included from /data0/software/PDO_MysqL-1.0.2/pdo_MysqL.c:31:
/data0/software/PDO_MysqL-1.0.2/PHP_pdo_MysqL_int.h:36: error: expected specifier-qualifier-list before ‘MysqL'
/data0/software/PDO_MysqL-1.0.2/PHP_pdo_MysqL_int.h:48: error: expected specifier-qualifier-list before ‘MysqL_FIELD'
/data0/software/PDO_MysqL-1.0.2/PHP_pdo_MysqL_int.h:53: error: expected specifier-qualifier-list before ‘MysqL_RES'
make: *** [pdo_MysqL.lo] Error 1
这是因为这是因为在编译时需要 MysqL 的头的文件。而它按默认搜索找不到头文件的位置,所以才出现这个问题。通过软连接把MysqL头文件对应到/usr/local/include/下就好 比如你的MysqL安装文件位于/usr/local/MysqL,那么就执行以下命令:
代码如下:
MysqL/include/* /usr/local/include/
原文链接:https://www.f2er.com/php/23969.html