0

试图在我的 php 5.3 (AMPPS) 中安装 imagick

我在 net 中看到了执行此命令的说明,但出现错误

酿造安装 php53-imagick

==> Installing php53-imagick dependency: php53
==> Downloading http://www.php.net/get/php-5.3.29.tar.bz2/from/this/mirror
######################################################################## 100.0%
==> Patching
patching file configure
patching file configure.in
patching file Zend/zend_language_parser.y
patching file configure
patching file Zend/acinclude.m4
==> rm Zend/zend_{language,ini}_parser.[ch]
==> ./configure --prefix=/usr/local/Cellar/php53/5.3.29 --localstatedir=/usr/loc
checking for krb5-config... /usr/bin/krb5-config
checking for DSA_get_default_method in -lssl... no
checking for X509_free in -lcrypto... yes
checking for pkg-config... no
configure: error: Cannot find OpenSSL's <evp.h>

我该如何解决?

我的 PHP、Apache、Mysql 是使用 AMPPS 安装的

4

2 回答 2

0

我知道我迟到了,但未来的用户可以关注这篇文章。

首先下载 PHP 扩展源

user> cd /src/of/php/extension

user> /Applications/AMPPS/php/bin/phpize

注意:下面的命令只是为了获取选项列表

user> ./configure --help

注意:可以从--help上面执行的选项中获取下面的选项。

user> CPPFLAGS="-m32 -I/Applications/AMPPS/extra/include -I/any/other/inclue/path" CFLAGS="-m32" LDFLAGS="-L/Applications/AMPPS/extra/lib -L/any/other/lib/path" ./configure --option1=value1 --option2=value2

user> make

user> sudo make install

您必须将扩展移动到扩展目录并从 Ampps 的 PHP 扩展启用它。

于 2014-09-24T13:39:20.753 回答
0

回答服务器故障

您需要帮助配置找出在哪里查找 evp.h 文件,因为默认情况下它会扫描目录并向它们添加硬编码后缀以找到它。我已将详细信息保留在我的 wiki 页面中,供那些想要了解解决方案的人使用。这对我有用:

root@audio-mon[10.10.10.82] ~/DOWNLOADS/php-5.5.23/ext/mysqlnd # PHP_OPENSSL_DIR="/usr /usr/lib/x86_64-linux-gnu"
root@audio-mon[10.10.10.82] ~/DOWNLOADS/php-5.5.23/ext/mysqlnd # ./configure --with-libdir=""
[...]
checking for DSA_get_default_method in -lssl... yes
checking for X509_free in -lcrypto... yes
checking for pkg-config... /usr/bin/pkg-config
checking for OpenSSL version... >= 0.9.6 #                     <------------------------------------- YES !
[...]
config.status: creating config.h
config.status: config.h is unchanged
root@audio-mon[10.10.10.82] ~/DOWNLOADS/php-5.5.23/ext/mysqlnd # 

YMMV(路径不同)。如果这对您不起作用,请检查 wiki 页面,它将帮助您确定要放置的路径。

于 2016-01-07T15:44:07.687 回答