Hi!
I got an error when compiling 0.7.3
I downloaded supertuxkart-0.7.3-src.tar.bz2 sourcecode.
And grabbed the last from irrlicht 1.8.0 branch (http://irrlicht.convextech.ca/).
Compiling Irrlicht (make NDEBUG=1) and installing libs.
Then I ran into error on returntype for member getOverrideColor() in files
CGUIEditBox.cpp
CGUIEditBox.h
Workaround:
Chage returntype of getOverrideColor() by removing "const &" from returntype
Snippet from my file:
//virtual video::SColor const & getOverrideColor() const;
virtual video::SColor getOverrideColor() const;
There is only one occurence in the each of the two files and nowhere else (as I saw).
The it compiled nicely and works very well on my Dell Dimension 8400 running Ubuntu 11.04.
Just thought this might help someone out.
Cheers!