首页 技术 正文
技术 2022年11月7日
0 收藏 942 点赞 397 浏览 1202 个字

curl不支持openssl的静态库,所以编译openssl的时候,应该加上shared 参数,记录一下我亲手编译的参数:

./configure –prefix=/usr/local/openssl shared zlib

shared 表示生成动态库

zlib 当然就是zlib了,这个库编译很容易,最好不要自行指定安装位置,因为别的软件安装的时候可能会从你指定的目录里头找不到zlib

接下来就是curl了,高版本的openssl(我用的是openssl-1.0.2e)不再导出V2版本的ssl函数,所以不能用低版本的curl+openssl-1.0.2e,至少curl-7.20.1是不能跟openssl-1.0.2e配合使用,所以我用了curl-7.46.0可以编译通过

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

curl的帮助文档提到,如果系统安装有pkg-config就应该通过配置PKG_CONFIG_PATH让configure程序找到openssl否则curl找不到openssl就很麻烦,这是我踩过的坑,死活找不到openssl,整得我的微信后台都不正常

上参数:

./configure –prefix=/usr/local/libcurl7.46.0 –enable-http –enable-ftp –enable-file –enable-ldap –enable-ldaps –enable-dict –enable-proxy –with-ssl

顺便放上php的参数,另php编译oci扩展也比较麻烦,下次上

./configure ‘–prefix=/usr/local/php’ ‘–enable-fpm’ ‘–enable-mbstring’ ‘–enable-soap’ ‘–enable-bcmath’ ‘–enable-sockets’ ‘–enable-zip’ ‘–with-openssl=/usr/local/openssl’ ‘–with-libxml-dir=/usr/local/libxml2’ ‘–with-curl=/usr/local/libcurl7.46.0’ ‘–with-pcre-dir=/usr/local/pcre’ ‘–with-zlib-dir=/usr/local/zlib’ ‘–with-freetype-dir=/usr/local/freetype2’ ‘–with-png-dir=/usr/local/libpng’ ‘–with-jpeg-dir=/usr/local/jpeg’ ‘–with-gd=/usr/local/libgd’ ‘–with-xpm-dir=/usr/local/libxpm’ ‘–with-mysql’ ‘–with-mysqli’

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:9,489
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,904
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,737
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,490
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:8,128
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:5,291