imagick-3.1.0RC2 安装错误

简介:

PHP 5.4.8 安装 imagick-3.1.0RC2 安装冒出一大堆错误,

貌似跟 ImageMagick-6.8.0-2 这个版本有关系,

我之前换成低版本的 ImageMagick 就可以顺利通过 php 编译扩展

网上资料也不多,找了半天,最后发现了个命令也不知道是干什么的,反正运行了此命令后解决问题,顺利完成安装鸟。。。:

export PKG_CONFIG_PATH=/usr/local/ImageMagick/lib/pkgconfig/

安装步骤:

tar zxvf imagick-3.1.0RC2.tgz
cd imagick-3.1.0RC2/
/usr/local/php/bin/phpize
export PKG_CONFIG_PATH=/usr/local/ImageMagick/lib/pkgconfig/
./configure --with-php-config=/usr/local/php/bin/php-config --with-imagick=/usr/local/ImageMagick
make && make install
cd ../





目录
相关文章
|
8月前
|
安全 应用服务中间件 PHP
liunx执行pecl install swoole报错“failed to run `phpize‘”
liunx执行pecl install swoole报错“failed to run `phpize‘”
127 1
|
7月前
|
Ubuntu PHP
ubuntu php libzip安装 ./configure报错 checking for libzip... not found configure
ubuntu php libzip安装 ./configure报错 checking for libzip... not found configure
120 1
自行编译cups绕过错误:file /etc/rc.d/rc.local from install of systemd conflicts with file from
自行编译cups绕过错误:file /etc/rc.d/rc.local from install of systemd conflicts with file from
104 0
xcache
;; 本文件只是例子, 请在 php.ini 里设置以便生效[xcache-common];; 警告: zend_extension* = *xcache* 必须是所有 zend_extension*=* 之中第一个出现;; 安装成 zend extension, 路径一般是 "$extension_dir/xcache.
|
Ubuntu 关系型数据库 MySQL
ubuntu服务器php7.2启用mysqli(不用reboot超简单)
ubuntu服务器php7.2启用mysqli(不用reboot超简单)
374 0
ubuntu服务器php7.2启用mysqli(不用reboot超简单)
|
Ubuntu Linux 开发工具
Linux - ubuntu下Vim安装失败,报The following packages have unmet dependencies: vim : Depends: vim-common
Linux - ubuntu下Vim安装失败,报The following packages have unmet dependencies: vim : Depends: vim-common
604 0
|
PHP 数据格式 数据库管理
|
Linux
【linux】CentOS编译程序报错 修复 ./Modules/_ssl.c:64:25: 致命错误:openssl/rsa.h:没有那个文件或目录
如果你在编译时遇到这个错误,这可能是下面的原因:你尝试编译的程序使用OpenSSL,但是需要和OpenSSL链接的文件(库和头文件)在你Linux平台上缺少。 所以在CentOS下, 退到根路径,【需要在root用户下】然后输入: yum install openssl-devel 安装完成后,重新编译自己的程序即可。
2750 0