编译php提示configure: error: GD build test failed错误

在编译完gd库等相应文件后,编译php文件的过程中提示一下错误;

configure: error: GD build test failed. Please check the config.log for details.

解决方法:

把php的编译参数:

--with-gd

修改为:

--with-gd=/usr/local/gd/

再次对php进行编译  ./configure ...

时间: 2024-12-16 05:57:09

编译php提示configure: error: GD build test failed错误的相关文章

安装iamp模块,编译报错configure: error: Cannot find imap library (libc-client.a). Please check your c-client installation.

yum install libc-client-devel cd /root/lnmp1.0-full/php-5.3.17/ext/imap /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config --with-kerberos --with-imap-ssl 执行./configure --with-php-config=/usr/local/php/bin/php-confi

CentOS 5.8上安装PHP软件提示“configure:error:no acceptable

问题: 在centos5.8上安装PHP软件包时,提示"configure:error:no acceptable cc found in $path". 原因: 这是缺少GCC编译器造成的,安装即可. 解决办法: 找到gcc的rpm包,安装即可.或者使用yum命令安装: # yum install gcc -y

YUM安装提示PYCURL ERROR 6 - "Couldn't错误的解决办法

当编译PHP时出现如下错误时,找不到头绪 这时,打开DNS   vim /etc/resolv.conf   添加一行nameserver 192.168.1.1 完成上一步,则解决该问题 YUM安装提示PYCURL ERROR 6 - "Couldn't错误的解决办法

升级openssh编译时报错“configure: error: *** working libcrypto not found, check config.log”的解决办法

问题描述 在linux上,欲将OpenSSH_6.4p1编译升级到OpenSSH_8.0p1时,执行了./configure ....编译命令后报错,报错信息如下: configure: error: *** working libcrypto not found, check config.log *** 或: configure: error: *** OpenSSL headers missing - please install first or check config.log ***

解决php编译报错configure: error: mcrypt.h not found. Please reinstall libmcrypt.

yum install -y epel-releaseyum install -y libmcrypt-devel 原文地址:https://www.cnblogs.com/finnlee/p/8992374.html

configure: error: Cannot find ldap.h错误

yum list openldapyum list openldap-devel安装 :yum install openldapyum install openldap-devel

Linux下安装过程中编译PHP时报错:configure: error: libjpeg.(a|so) not found

在Linux下安装PHP过程中,编译时出现configure: error: libjpeg.(a|so) not found 错误的解决的方法: 检查之后发现已经安装libjpeg.可是/usr/lib文件夹下没有libjpeg.so这个文件,在/usr/lib64下是有的,使用–with-jpeg-dir=/usr/lib64 依旧无效, 最后用ln -s /usr/lib64/libjpeg.so /usr/lib/libjpeg.so问题解决 libpng报错解决方法一样

configure: error: APR not found. Please read the documentation

本以为Apache的编译安装很简单,其实不然: 以前的环境下编译报错很少 ,但这次不行了 提示configure: error: APR not found. Please read the documentation. 经网上查阅资料才知道这是Apache的关联软件 在apr.apache.org网站上可以下载此软件(apr-1.4.5.tar.gz):编译安装完成后:本以为就可以相安无事的进行Apache的安装 :没想到 突然间报了个 configure: error: APR-util n

configure: error: no acceptable C compiler found in $PATH 问题解决

今天在百度云的系统上安装python3 编译的时候提示 configure: error: no acceptable C compiler found in $PATH 问题解决 网上查了是 是缺少gcc yum install gcc 然后继续编译就可以了 原文地址:https://www.cnblogs.com/baker95935/p/9816310.html