当前位置: 首页 > 工具软件 > ActiveMQ-CPP > 使用案例 >

activemq-CPP编译开发环境搭建

潘弘博
2023-12-01

apr及工具安装

步骤一、http://apache.fayea.com/apr/页面下载

apr-1.5.2.tar.gz
apr-iconv-1.2.1.tar.gz
apr-util-1.5.4.tar.gz
步骤二、安装apr

tar zxvf apr-1.5.2.tar.gz

cd apr-1.5.2

./configure

make

make install

步骤三、安装apr-iconv

cd apr-iconv-1.2.1

./configure --with-apr=/usr/local/apr/

make

make install

步骤四、安装apr-apr-util-1.5.4

cd apr-util-1.5.4

./configure --with-apr=/usr/local/apr/

make

make install



openssl安装

http://www.openssl.org/source/

openssl-1.0.0s.tar.gz

tar zxvf openssl-1.0.0s.tar.gz
cd openssl-1.0.0s
./Configure 
make
make install


 类似资料: