码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS6.5上给curl安装ssl时错误解决

时间:2014-09-09 11:26:08      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   os   使用   ar   for   问题   sp   

1 在CentOS上使用PHP的curl访问HTTPS页面时,出现错误“Protocol https not supported or disabled in libcurl”。

表示curl未启用https,需要重新编译php所使用的curl库。

cd curl-7.31.0
./configure --prefix=/home/www/thirdlib/curl --with-ssl=/ueidc/openssl

出现错误提示:

checking for SSL_connect in -lssl... no
checking for ssl with RSAglue/rsaref libs in use... checking for SSL_connect in -lssl... (cached) no
configure: error: OpenSSL libs and/or directories were not found where specified!

是因为安装openssl时没启用shared选项,没有生成共享库

2 问题:

/usr/bin/ld: warning: libcrypto.so.1.0.0, needed by ../lib/.libs/libcurl.so, not found (try using -rpath or -rpath-link)

解决方式:

env LDFLAGS=-R/home/www/thirdlib/openssl/lib ./configure --prefix=/home/www/thirdlib/curl --with-ssl=/home/www/thirdlib/openssl

3 ./configure --with-php-config=/home/www/php/bin/php-config --with-curl=/home/www/thirdlib/curl

CentOS6.5上给curl安装ssl时错误解决

标签:style   http   color   os   使用   ar   for   问题   sp   

原文地址:http://www.cnblogs.com/thrillerz/p/3961660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!