Installing MakeHuman on Intrepid Ibex x64?

I’ve tried multiple guides, but I can’;t seem to get it to work. I get this compile error whenever I try to install animorph:

 g++ -DHAVE_CONFIG_H -I. -I.. -Wall -g -O2 -MT BodySettings.lo -MD -MP -MF .deps/BodySettings.Tpo -c BodySettings.cpp  -fPIC -DPIC -o .libs/BodySettings.o
BodySettings.cpp: In member function 'void Animorph::BodySettings::fromStream(std::ifstream&)':
BodySettings.cpp:54: error: 'strlen' was not declared in this scope
make[2]: *** [BodySettings.lo] Error 1
make[2]: Leaving directory `/home/tim/Desktop/MakeHuman/animorph-0.3/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/tim/Desktop/MakeHuman/animorph-0.3'
make: *** [all] Error 2

Help?

Add “#include <cstring>” to the top of the file “BodySettings.cpp”.

Now I’m getting this error:

In file included from VertexVector.cpp:2:
../include/animorph/util.h: In function 'void Animorph::stringTokeni(const std::string&, const std::string&, T&)':
../include/animorph/util.h:169: error: 'atoi' is not a member of 'std'
../include/animorph/util.h:174: error: 'atoi' is not a member of 'std'
make[2]: *** [VertexVector.lo] Error 1
make[2]: Leaving directory `/home/tim/Desktop/MakeHuman/animorph-0.3/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/tim/Desktop/MakeHuman/animorph-0.3'
make: *** [all] Error 2

Should I be using a different compiler? or will I have to edit the source code?

http://gcc.gnu.org/gcc-4.3/porting_to.html

C++ language issues

I put #include <cstdlib> in both BodySettings.cpp and VertexVector.cpp, but I still get the same “‘atoi’ is not a member of ‘std’” error.

EDiT: Nevermind, I added ,<cstdlib> to util.h, and now I have a different error, but I believe I can fix it.

Replace all string from “std::atoi” to “atoi”.

Thank you both!
http://img356.imageshack.us/img356/2432/makehumanwk8.png