mac osx 10.11.2安装PHP7提示“configure: error: libcrypto not found!”
刚升级到了最新的系统OS X 10.11.2,在安装PHP7时
./configure --prefix=/usr/local/php7 --with-config-file-path=/usr/local/php7/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysqli --with-pdo-mysql --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts
时,提示错误:
checking for xml2-config path... /usr/bin/xml2-config
checking whether libxml build works... yes
checking for OpenSSL support... yes
checking for Kerberos support... no
checking whether to use system default cipher list instead of hardcoded value... no
checking for RAND_egd... no
checking for pkg-config... no
checking for OpenSSL version... >= 0.9.8
checking for CRYPTO_free in -lcrypto... no
configure: error: libcrypto not found!
百度了一下,这个和openssl有关系 ,目前openssl已经安装过了,版本为0.9.8,此错误好像是openssl-devel开发包里的内容,但用brew install 安装好像并没有找到此包,不知应该如何解决。。。
已经解决,重新用brew install openssl安装了一次openssl,然后指定了openssl的路径。
--with-openssl=/usr/local/opt/openssl
原来试了不行,来回折腾了下,竟然又可以了。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
诶,你
--with-openssl
是需要指定openssl的位置的,看你brew
的位置直接用brew install php70不行吗?
重新安装openssl的时候,提示这个
感觉着应该是这个问题的.
这个问题后来怎么解决的?我也遇到这个问题了!