运行环境:
Ubuntu 15.04
PHP 5.5.19
安装PHP的扩展LDAP,按往常习惯,先phpize,再configure,先是碰到下面这个问题:
configure: error: Cannot find ldap libraries in /usr/lib
然后我用apt-cache search ldap | grep ldap 来搜索相关的扩展包,找到了libldap2-dev并且安装好了。
再运行configure 发现下面这个问题:
configure error: Cannot find header file 'ldap.h'
然后我whereis ldap了一下,在/usr/include/下的确存在这个文件,然后我继续搜,找到如下解决方案:
cd /usr/lib/x86_64-linux-gnu #如果是32位系统,目录是/usr/lib/i386-linux-gnu
sudo ln -s /usr/include/ldap.h ldap.h
然后改了configure语句,如下:
./configure --with-php-config=/usr/local/php/bin/php-config --with-ldap=/usr/lib/x86_64-linux-gnu
......(以下照常)
搞定了!
Linux入门教程:LDAP服务器的搭建:http://www.linuxdiyf.com/linux/10542.html
CentOS下LDAP服务配置指南:http://www.linuxdiyf.com/linux/8662.html
ubuntu15.04编译安装php5.3和5.2:http://www.linuxdiyf.com/linux/12055.html
在Ubuntu Kylin中安装PHP开发环境:http://www.linuxdiyf.com/linux/9908.html
Linux下yum升级安装PHP 5.5:http://www.linuxdiyf.com/linux/12916.html