欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

libcurl编译---支持https

程序员文章站 2022-04-11 13:55:48
...

1、先编译openssl(要生成动态库,以shared方式编译)
将生成的*.a 和 .so放到 ./lib目录下

2、编译curl
添加 --with-ssl=XXX(openssl库所在的目录)
执行完./configure … 之后SSL support项后边应该是“enabled (OpenSSL)”如图:
libcurl编译---支持https
如果是“no”,则是没有将openssl的动态库(.so)放到相应的lib目录下

出现问题解决:
1、编译curl的时候报错:

make[2]: Entering directory '/opt/scl/curl7.50.1/src'
  CCLD     curl
../lib/.libs/libcurl.so: undefined reference to `SSL_CTX_use_certificate_key_sm2enc'
../lib/.libs/libcurl.so: undefined reference to `GMT_VERSION_client_method'
../lib/.libs/libcurl.so: undefined reference to `SSLv2_client_method'
../lib/.libs/libcurl.so: undefined reference to `SSL_CTX_use_certificate_key_file_sm2enc'
collect2: error: ld returned 1 exit status
Makefile:771: recipe for target 'curl' failed
make[2]: *** [curl] Error 1
make[2]: Leaving directory '/opt/scl/curl7.50.1/src'
Makefile:649: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/opt/scl/curl7.50.1/src'
Makefile:883: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1

编译的时候没有链接openssl的库,看看是哪个目录下出错,上边的是src目录下的文件编译的时候出错了,所以需要打开src目录下的Makefile文件,可能里边有“-lssl…”这个参数,但是明显是没有用到,所以需要我们将其添加到CFLAS参数后边,这个参数是肯定用到了。

搞定,完工,再编译就没有问题了,可以使用了。