php jpeg 支持

php jpeg 支持

我已经遵守了 php 的以下选项

'./configure' '--with-config-file-path=/opt/apache/php/etc' '--with-config-file-scan-dir=/opt/apache/php/etc/php.d' '--enable-sysvsem' '--enable-sysvshm' '--enable-sysvmsg' '--enable-shmop' '--enable-soap' '--enable-bcmath' '--disable-debug' '--enable-ftp' '--with-curl=/usr/include' '--with-regex=system' '--enable-inline-optimization' '--enable-magic-quotes' '--enable-mbstring' '--enable-wddx=shared' '--enable-xml' '--with-gd' '--with-gettext' '--with-mysql' '--with-zlib-dir=/usr/local/lib' '--enable-mbstring' '--prefix=/opt/apache/php' '--with-apxs2=/opt/apache/bin/apxs' '--with-zlib' '--with-openssl' '--with-freetype-dir=/usr/include/freetype2/freetype--with-jpeg-dir=/usr/lib/' 

但是我没有 jpeg 支持。

我是否遗漏了什么?

libjpeg 和 libjpeg-devel 已安装

谢谢

答案1

--with-freetype-dir=/usr/include/freetype2/freetype--with-jpeg-dir=/usr/lib/

之间没有空格

–with-freetype-dir=/usr/include/freetype2/freetype

–with-jpeg-dir=/usr/lib/

不是吗?

相关内容