configure:错误:在SLES-12-64bit LINUX上编译php-5.2.8时找不到png.h

时间:2015-12-11 15:08:43

标签: php linux apache libpng sles

我在SLES-12-64bit LINUX上编译php-5.2.8。 运行configure脚本后,我收到以下错误。

configure:错误:找不到png.h。

我还安装了libpng16-devel,参见下面的命令输出,

#rpm -qa | grep -i libpng

libpng16-16-32bit-1.6.8-2.24.x86_64

libpng16-16-1.6.8-2.24.x86_64

libpng16-devel的-32位-1.6.8-2.2.x86_64

libpng16-devel的-1.6.8-2.2.x86_64

#ls -l /usr/include/libpng16/png.h

-rw-r - r-- 1 root root 149224 Sep 11 13:40 /usr/include/libpng16/png.h

以下是我提供的配置脚本的选项, ./configure

    --prefix=/opt/MicroWorld/usr \
    --exec-prefix=/opt/MicroWorld/usr \
    --sysconfdir=/opt/MicroWorld/etc/httpd/php5 \
    --sharedstatedir=/opt/MicroWorld/usr/php5 \
    --libdir=/opt/MicroWorld/usr/lib/mwhttpd/php5 \
    --includedir=/opt/MicroWorld/usr/include/php5 \
    --with-apache=../apache_1.3.41 \
    --with-config-file-path=/opt/MicroWorld/etc/httpd/php5 \
    --enable-magic-quotes \
    --without-pear \
    --enable-memory-limit \
    --disable-rpath \
    --enable-sockets \
    --with-ldap \
    --enable-mbstring \
    --enable-fpm \
    --enable-shared \
    --disable-debug \
    --with-gd \
    --disable-static \
    --disable-dmalloc \
    --with-tsrm-pthreads \
    --enable-cli \
    --disable-cgi \
    --enable-inline-optimization \
    --enable-ftp \
    --enable-magic-quotes \
    --enable-calendar \
    --enable-bcmath \
    --enable-exif \
    --with-mod_charset \
    --enable-safe-mode \
    --enable-sigchild \
    --enable-dbx \
    --enable-dbase \
    --enable-gd-native-ttf \
    --disable-libxml \
    --disable-simplexml \
    --disable-xml \
    --disable-xmlreader \
    --disable-xmlwriter \
    --disable-dom \
    --enable-pthreads=static \
    --enable-pcntl \
    --enable-maintainer-zts \
    --with-gettext=/usr/local \
    --with-zlib \
    --with-libdir=lib64 \
    --with-png-dir=/usr/include/libpng16 \
    --with-jpeg-dir

非常感谢任何帮助解决此问题。

感谢。

2 个答案:

答案 0 :(得分:1)

如果您正在运行Debian变体,请尝试以下操作:

sudo apt-get install build-essential

然后,你应该安装" ...-标题"配置脚本抱怨它没有的库的一部分(即:png.h)。 要使用CLI查找它:

apt-cache search png | grep -i header

如果您正在使用Redhat,我猜一点点Google搜索可以获得相同的命令行:)

答案 1 :(得分:1)

Suse“12”:搜索libpng→→# zypper se libpng

安装devel包:# zypper in libpng12-compat-devel

或者:# zypper in libpng14-devel