HOWTO: Install Thrift on Fedora 11
December 12, 2009
These are the steps to install Thrift on Fedora 11.
- Get Thrift from official site
- wget -O thrift.tgz "http://gitweb.thrift-rpc.org/?p=thrift.git;a=snapshot;h=HEAD;sf=tgz"
- tar -xzf thrift.tgz
- mv thrift "thrift-snapshot-head-$(date +%Y%m%d)"
- cd "thrift-snapshot-head-$(date +%Y%m%d)"
- Install packages depending
- yum -y install autoconf automake sysconftool boost boost-devel libtool perl-ExtUtils-MakeMaker
- Compile and Install
- ./bootstrap.sh
- ./configure \
- --prefix="/usr/local/thrift-snapshot-head"
- make && make install