Here is a screen shot of the error I am getting:

http://dl.dropbox.com/u/20599297/Screen%20shot%202011-05-25%20at%203.41.36%20PM.png

I really don't know what the problem is.

I have PHP installed with APC maybe thats the problem...

I am running on Ubuntu Server.

Thanks in advance for any help.

link|improve this question

2  
Also a copy of the command you executed would be helpful. – Don Neufeld May 25 '11 at 20:11
feedback

2 Answers

It looks like your libtool library is messed up. You should try removing libtool from apt-get and compiling it manually.

I got the same error under debian lenny.

The problem is the libool 1.5.26 installed via apt which raises the errors.

To build thrift download the libtool 1.5.24 source from

ftp://ftp.gnu.org/gnu/libtool/libtool-1.5.24.tar.gz

build it (./configure;make) and copy the libtool executable to the thrift source directory after you > ran ./configure.

Now 'make' should work and generate the thrift executable.

SRC: http://ubuntuforums.org/showpost.php?p=9435157&postcount=4

link|improve this answer
I re-installed Python and I was able to "make" thrift... But now when I do "make install" I get this: dl.dropbox.com/u/20599297/… – Jean-Nicolas Boulay Desjardins May 26 '11 at 23:00
I tried to re-start from the beginning... So I did: ./bootstrap.sh But since it's not where they say it is I had to find it. It was in: ./contrib/fb303/bootstrap.sh Here is the error I get: dl.dropbox.com/u/20599297/… – Jean-Nicolas Boulay Desjardins May 26 '11 at 23:25
It still looks like your libtool is messed up. Also did you use "make distclean" – Colum May 27 '11 at 3:10
show 10 more comments
feedback
up vote 0 down vote accepted

Answer is simple. Install package python-dev. I think you also need to install python before.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.