Gearman 0.28 Released

218 views
Skip to first unread message

Brian Aker

unread,
Jan 27, 2012, 12:03:53 PM1/27/12
to gea...@googlegroups.com
Hi!

* -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

signature.asc

Robert Spychala

unread,
Feb 5, 2012, 10:52:17 AM2/5/12
to gea...@googlegroups.com
Hi Brian,

I'm on ubuntu 10.04 and i get stuck with:

configure: error: No working C++ Compiler has been found. gearmand requires a C++ compiler that can handle C++98

when running ./configure

also, when reverting to 0.27 configure errors out at:

configure: error: cannot find Boost headers version 1.39

even though i installed boost via sudo apt-get install libboost-dev and believe to have a latter version (1.40 i believe)

thanks!

r.S.

Cherian Thomas

unread,
Feb 5, 2012, 11:24:00 AM2/5/12
to gea...@googlegroups.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 libuuid libuuid-devel gcc gcc-c++ libdbi-dbd-sqlite sqlite-devel
ignore the sqllite


Regards,
Cherian

Clint Byrum

unread,
Feb 5, 2012, 11:50:43 AM2/5/12
to gearman
Excerpts from Robert Spychala's message of Sun Feb 05 07:52:17 -0800 2012:

> Hi Brian,
>
> I'm on ubuntu 10.04 and i get stuck with:
>
> configure: error: No working C++ Compiler has been found. gearmand requires
> a C++ compiler that can handle C++98
>

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.

Robert Spychala

unread,
Feb 5, 2012, 9:32:51 PM2/5/12
to gea...@googlegroups.com
thanks, that did it. (turns out i had the silly q :) 

and thanks for a great library. 

cheers,

r.S.

smallfish

unread,
Feb 5, 2012, 10:11:52 PM2/5/12
to gea...@googlegroups.com
hello, new version has none configure for libevent?
--


2012/1/28 Brian Aker <br...@tangent.org>
-----BEGIN PGP SIGNATURE-----

iQEcBAEBAgAGBQJPItj5AAoJEItO41/aJIgTdI4H/1djWpjwvh9oO3tkHurdZ1rd
vDkKTM6MO9v7aLiselNGYa4sZqgdBw2kOKugCt97M/1QSvv7e4A0L0MI3oEA1VZc
HizuLSci3g7yRLBi4nflK9mUByuPiiaPrTqLmu3YBAj//qggMsvnumOjX5yvlnKI
uMcFZCsLhQhob/eiRl3NnO6FQJwy+3PF1IPFKs1Wz6539HF5LqVrMWxDaohPET2j
AO01r5OsRG/We6MM0LwRlVtYMtVmn405X8+dhy2vOb6vcTqBX3yOJ4KayjibiJTu
XqDSqSCFQHsxa/TuI2sWhvNsqVd1KJ09o8Sxn8GjRwxboscUtrO2uLkqTYGNslI=
=sA4w
-----END PGP SIGNATURE-----


smallfish

unread,
Feb 5, 2012, 10:12:08 PM2/5/12
to gea...@googlegroups.com
oh, sorry. can set LIBEVENT_CPPFLAGS & LIBEVENT_LDFLAGS
--


2012/2/6 smallfish <smallf...@gmail.com>

Kaiwang Chen

unread,
Feb 6, 2012, 2:28:37 AM2/6/12
to gea...@googlegroups.com
Hi Cherian,

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

Herman Radtke

unread,
Feb 7, 2012, 1:25:13 PM2/7/12
to gea...@googlegroups.com
> 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

Piavlo

unread,
Feb 8, 2012, 3:17:33 AM2/8/12
to gea...@googlegroups.com

In case it helps someone these are exact instruction i made to install
boost 1.47 with needed dependencies on centos5.

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

Reply all
Reply to author
Forward
0 new messages