标签:bsp 1.2 server http crypto ase bcrypt 解压 编译openssl
编译环境
操作系统: Red Hat Enterprise Linux Server release 5.4 64-bit
编译工具: gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-46)
1. 下载zlib库
以zlib-1.2.7.tar.gz包为例,将zlib-1.2.7.tar.gz上传至/home目录下
2. 编译安装zlib库
$ cd /home
$ tar -zxvf zlib-1.2.7.tar.gz
$ cd zlib-1.2.7
$ ./configure --prefix=/usr/local
$ make && make install && make clean
3. 下载OpenSSL
地址:http://www.openssl.org/source/
以openssl-1.0.1c.tar.gz包为例,将openssl-1.0.1c.tar.gz上传至/home目录下
4. 解压OpenSSL
$ cd /home
$ tar -zxvf openssl-1.0.1c.tar.gz
$ cd openssl-1.0.1c
5. 编译并安装
编译
$ ./config enable-shared --prefix=/usr/local/openssl/ --openssldir=/usr/local/ssl/zlib
$ make && make test && make install
清理编译时的中间文件
$ make clean
6. 使用
在/usr/local/openssl/lib中存放的生成的openssl库libcrypto.a和libssl.a,可以直接用来参与静态编译
Linux下编译OpenSSL
标签:bsp 1.2 server http crypto ase bcrypt 解压 编译openssl
原文地址:http://www.cnblogs.com/jeffen/p/5993964.html