`

编译PHP时报错:configure: error: libpng.(a|so) not found.

    博客分类:
  • PHP
PHP 
阅读更多
编译PHP时报错:configure: error: libpng.(a|so) not found.

解决办法:

     #ln -sf libpng.so.3.18.0 libpng.so
分享到:
评论

相关推荐

    PHP编译configure时常见错误的总结

    5. **错误:configure: error: libpng.(a|so) not found** 解决方案:Debian用户应安装`libpng12-dev`,命令为`apt-get install libpng12-dev`。 6. **错误:configure: error: cannot find output from lex; ...

    CentOS下编译php时的一些典型错误及解决办法.

    5. configure: error: libpng.(a|so) not found 解决方法: yum install libpng-devel 此错误是由于缺少 libpng-devel 库文件所引起的。libpng-devel 库文件是 PHP 编译所需的依赖项,可以使用 yum 命令来安装。 ...

    解决usrlib64libstdc++.so.6和lib64libc.so.6版本过低问题

    ./bin/mysqld: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by ./bin/mysqld) ./bin/mysqld: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by ./bin/mysqld) ``` 这...

    Linphone编译错误及解决方法

    13. configure: error:intltool not found 错误原因:缺少intltool。 解决方法:sudo apt-get install intltool Make错误: Git相关: 解决方法:sudo apt-get install git Make install: 解决方法:...

    libstdc++.so.6.0.19

    解决libc.so.6: version `GLIBC_2.18' not found问题 运行:strings /lib64/libc.so.6 |grep GLIBC_ 发现没有GLIBC_2.18 下载:wget http://mirrors.ustc.edu.cn/gnu/libc/glibc-2.18.tar.gz 解压:tar -zxvf glibc-...

    sqlite3文件(sqlite3:not found 解决方法)

    sqlite3文件(用于解决安卓真机中sqlite3:not found的错误) http://blog.csdn.net/hust_twj/article/details/52212558

    CentOS7升级GCC版本到gcc 8.3.0,解决GLIBCXX-3.4.21 not found 问题

    解决/usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found 问题 步骤如下: 解压文件: $ unzip gcc-8.3.0.zip 解压完成,进入文件目录: $ cd gcc-8.3.0 利用源码包里自带的工具下载所需要的依赖项: $ ./...

    CentOS编译安装PHP常见错误及解决办法

    4. 错误:`configure: error: libjpeg.(a|so) not found` 解决方法:安装GD库及其开发库,命令是`yum -y install gd gd-devel`。 5. 错误:`configure: error: Could not find net-snmp-config binary. Please ...

    ffmpeg-2.13 ubuntu安装配置文件 大全

    安装lame-3.98.4.tar.gz, 以免在第三步的时候出现ERROR: libmp3lame >= 3.98.3 not found错误, 需要提前安装lame. tar zvxf lame-3.98.4.tar.gz cd lame-3.98.4 ./configure --enable-shared make make ...

    android编译的openssl静态库.a 动态库.so

    本文将详细介绍如何在Android环境下编译OpenSSL生成静态库`.a`和动态库`.so`。 首先,我们有两个关键的脚本文件:`make_static.sh` 和 `make_share.sh`。这两个脚本分别用于编译静态库和动态库。 1. **静态库(.a)...

    linux上安装libpng

    ### Linux上安装libpng库详解 #### 一、引言 在Linux环境下,尤其是CentOS发行版中,安装像libpng这样的图形库是一项常见的任务。libpng是一个用于处理PNG图像格式的强大库,广泛应用于各种软件开发场景中。本文将...

    libpng-1.6.37.tar.gz

    **PNG库详解:libpng-1.6.37** libpng是一个开源的PNG(Portable Network Graphics)图像处理库,广泛应用于各种操作系统和编程语言环境中,用于读取、写入和处理PNG图像文件。PNG是一种无损压缩的位图格式,提供...

    automake autotools autoconf

    `autotools`可以理解为一个流程,包括编写`configure.ac`(`autoconf`的输入)、运行`autoconf`生成`configure`脚本,然后编写`Makefile.am`(`automake`的输入),运行`automake`和`autoheader`生成`Makefile.in`和...

    libpng-1.6.37.tar.gz.7z

    5. **源码编译**:libpng-1.6.37.tar.gz 文件包含了库的源代码,开发者或系统管理员可以下载后,按照 README 或 configure 脚本的指示编译安装到本地系统中,以便在自己的应用程序中使用 libpng 功能。 6. **CSDN ...

    apache2.4完整安装

    ### Apache2.4完整安装及解决configure: error: APR-util not found问题 #### 一、背景介绍 Apache HTTP Server(通常简称为Apache)是目前最流行的Web服务器软件之一,广泛应用于互联网上的各种网站和应用程序。...

    ubuntu-version `GLIBC-2.25` not found.pdf

    根据提供的文件信息,文档标题“ubuntu-version `GLIBC-2.25` not found.pdf”以及描述“ubuntu_version `GLIBC_2.25` not found”,明确指出在Ubuntu系统上遇到了GLIBC 2.25版本未找到的问题。GLIBC(GNU C Library...

    PHP编译安装时常见错误解决办法

    1. 错误:`configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution` 解决:运行 `yum -y install libxslt-devel` 来安装libxslt开发库。 2. 错误:`configure: error: ...

    php源代码安装常见错误与解决办法分享

    11. **错误:configure: error: libpng.(a|so) not found.** 解决:缺少libpng库,可以通过`yum install libpng libpng-devel`来安装。 12. **错误:configure: error: freetype.h not found.** 解决:解决方法是...

    配置php-5.6.40的编译环境.rar

    本文将详细介绍如何配置PHP 5.6.40的编译环境,特别是解决描述中提到的“缺少include环境,造成不能编译”的问题。 首先,确保你的系统上已经安装了必要的基础工具,包括GCC编译器、make、autoconf、libtool以及...

    libpng-1.6.34.tar.gz

    8. 更新PHP配置文件(如php.ini),添加`extension=libpng.so`(或对应你的系统的扩展名) 9. 重启PHP服务使配置生效。 在实际操作中,可能会遇到依赖冲突、权限问题或其他编译错误,这些问题需要根据错误提示逐一...

Global site tag (gtag.js) - Google Analytics