开始以为是没有安装openssl, openssl-devel,安装后发现还是提示这个错误,搜索了一下evp.h,这个文件也存在.GOOGLE 了一下,在stackoverflow,找到了答案,原来是 phpize 生成的configure脚本有问题. 解决方法: export PHP_OPENSSL_DIR=yes ./configure -with-openssl-dir=/usr/include/openssl…
开始以为是没有安装openssl, openssl-devel,安装后发现还是提示这个错误,搜索了一下evp.h,这个文件也存在.GOOGLE 了一下,在stackoverflow,找到了答案,原来是 phpize 生成的configure脚本有问题. 解决方法:修改configure 文件加入 这个是安装mysqlnd扩展报错的 export PHP_OPENSSL_DIR=yes ./configure --with-php-config=/home/php/bin/php-config -…
=============================================== yum install error: protected multilib versions error===============================================sudo yum downgrade openssl 降级sudo yum install openssl-devel ===另外参考====================================…
出现 Configure: error: freetype.h not found. 的解决办法 CentOS yum install freetype-devel Debian apt-get install libfreetype6-dev…
我是在CentOS6.5安装php5.5.28这个版本,PHP编译代码如下: ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-gd --with-ico…
1.在github 上面 git clone 一个RN 项目代码,npm install (yarn)后,准备运行iOS工程,发现'config.h' file not found ,恶心!!! 百度发现:这个是常见错误,只需要在项目根目录下(里面包含node_modules文件夹)运行以下命令(下面的两行同时复制,终端运行)即可解决: cd node_modules/react-native/third-party/glog-0.3.4 ../../scripts/ios-configure-…
今天准备给yii2安装redis扩展,先安装了redis服务,然后安装redis php官方扩展,在make的时候提示' checking for igbinary includes... configure: error: Cannot find igbinary.h ' 上stackoverflow搜了下,说是默认安装Igbinary库的路径在/usr/local/php/indclude下面,改成/usr/php/include即可,看了一下服务器上根本没有装这个扩展,只能先装Igbina…
PHP的时候提示这个错误 configure: error: png.h not found.,这个是选择安装GD模块才会出现的错误,详细错误信息如下 If configure fails try --with-vpx-dir=<DIR> If configure fails try --with-jpeg-dir=<DIR> configure: error: png.h not found. 解决方法: yum install libpng-devel…
编译php出现错误: configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/ 解决方法: # yum install -y libcurl-devel…
编译出现错误: configure: error: mcrypt.h not found. Please reinstall libmcrypt. 解决方法: yum install -y libmcrypt libmcrypt-devel…