After googeling the error message for a bit I figured out that I should install the SWIG package.... Hmm...
Anyway, it took me to the next error - unfortunately.
Code:
scons: done reading SConscript files.
scons: Building targets ...
swig -o build/vdrift_wrap.cc -c++ -python src/vdrift.i
src/vdrift.i:22: Error: Unable to find 'include/bipointer.h'
src/vdrift.i:25: Error: Unable to find 'include/3dmath.h'
src/vdrift.i:28: Error: Unable to find 'include/objects.h'
src/vdrift.i:29: Error: Unable to find 'include/physics.h'
src/vdrift.i:30: Error: Unable to find 'include/vamosworld.h'
scons: *** [build/vdrift_wrap.cc] Error 1
scons: building terminated because of errors.
It seems, that the header list in the vdrift.i file isn't up to date. I tried to replace all the header filenames in the vdrift.i file with the current ones.
However, I did not really have luck, since the SWIG compiler doesn't like the "BIPOINTER" anymore...
Code:
%template(DRAWABLE_BIPOINTER) BIPOINTER<DRAWABLE>;