* -v has been deprecated because of parsing issues. Please use --verbose instead
* --log-file=stderr will set output to stderr.
* Fix for gearman.spec file for rpm build.
* Fixed other bugs (see launchpad).
https://launchpad.net/gearmand
Cheers,
-Brian
Silly question, did you install g++ ?
If you can upload your config.log somewhere (paste.ubuntu.com works) we can
look at it and figure out the issue.
-----BEGIN PGP SIGNATURE-----
iQEcBAEBAgAGBQJPItj5AAoJEItO41/aJIgTdI4H/1djWpjwvh9oO3tkHurdZ1rd
vDkKTM6MO9v7aLiselNGYa4sZqgdBw2kOKugCt97M/1QSvv7e4A0L0MI3oEA1VZc
HizuLSci3g7yRLBi4nflK9mUByuPiiaPrTqLmu3YBAj//qggMsvnumOjX5yvlnKI
uMcFZCsLhQhob/eiRl3NnO6FQJwy+3PF1IPFKs1Wz6539HF5LqVrMWxDaohPET2j
AO01r5OsRG/We6MM0LwRlVtYMtVmn405X8+dhy2vOb6vcTqBX3yOJ4KayjibiJTu
XqDSqSCFQHsxa/TuI2sWhvNsqVd1KJ09o8Sxn8GjRwxboscUtrO2uLkqTYGNslI=
=sA4w
-----END PGP SIGNATURE-----
2012/2/6 Cherian Thomas <cheri...@gmail.com>:
> This is my yum line, you probably have something missing from here
> sudo yum install boost-static libevent-devel e2fsprogs-devel uuid uuid-devel
Looks like boost-static is not in CentOS base and updates, nor in epel?
./configure complains:
checking for Boost headers version >= 1.39.0... no
configure: error: cannot find Boost headers version >= 1.39.0
Thanks,
Kaiwang
If you are using CentOS 5.x then you need to download them from
another source. There is another thread where we discuss how this was
done.
If you upgrade to CentoS 6 then boost 1.41 is bundled.
--
Herman Radtke
herman...@gmail.com | http://hermanradtke.com
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz
tar zxvf autoconf-2.68.tar.gz
cd autoconf-2.68/
/configure --prefix=/usr/local/autoconf/2.68
make
make install
ln -s 2.68 /usr/local/autoconf/LAST
ln -s /usr/local/autoconf/LAST/bin/* /usr/local/bin
wget http://ftp.gnu.org/gnu/automake/automake-1.11.tar.gz
tar zxvf automake-1.11.tar.gz
cd automake-1.11/
./configure --prefix=/usr/local/automake/1.11
make
make install
ln -s 1.11 /usr/local/automake/LAST
ln -s /usr/local/automake/LAST/bin/* /usr/local/bin
wget
http://downloads.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.bz2
tar jxvf boost_1_47_0.tar.bz2
cd boost_1_47_0
./bootstrap.sh --prefix=/usr/local/boost/1.47.0 --with-libraries=thread
--with-libraries=program_options
./b2
./b2 install
ln -s 1.47.0 /usr/local/boost/LAST
ln -s /usr/local/boost/LAST/lib/*.so* /usr/local/lib
ln -s /usr/local/boost/LAST/include/boost /usr/local/include
Alex