Getting closer...
scons: Reading SConscript files ...
os.name: posix
Using compiler: linux
Found sdl-config: /usr/bin/sdl-config
Using subsystem: unix
Found sdl-config: /usr/bin/sdl-config
Found wx-config: /usr/bin/wx-config
Found sdl-config: /usr/bin/sdl-config
Found sdl-config: /usr/bin/sdl-config
scons: done reading SConscript files.
scons: Building targets ...
g++ -o source/common/AnimationFactory.o -c -DNO_WRITE_MNG -DUNIX source/common/AnimationFactory.cpp
g++ -o source/common/DefaultFile.o -c -DNO_WRITE_MNG -DUNIX source/common/DefaultFile.cpp
g++ -o source/common/DefaultFileSystem.o -c -DNO_WRITE_MNG -DUNIX source/common/DefaultFileSystem.cpp
g++ -o source/common/Entities.o -c -DNO_WRITE_MNG -DUNIX source/common/Entities.cpp
g++ -o source/common/FLICAnimation.o -c -DNO_WRITE_MNG -DUNIX source/common/FLICAnimation.cpp
g++ -o source/common/Filters.o -c -DNO_WRITE_MNG -DUNIX source/common/Filters.cpp
g++ -o source/common/Font.o -c -DNO_WRITE_MNG -DUNIX source/common/Font.cpp
g++ -o source/common/Image32.o -c -DNO_WRITE_MNG -DUNIX source/common/Image32.cpp
g++ -o source/common/Layer.o -c -DNO_WRITE_MNG -DUNIX source/common/Layer.cpp
source/common/Layer.cpp: In copy constructor ‘sLayer::sLayer(const sLayer&)’:
source/common/Layer.cpp:59:72: error: ‘memcpy’ was not declared in this scope
memcpy(m_Tiles, layer.m_Tiles, m_Width * m_Height * sizeof(int));
^
source/common/Layer.cpp: In member function ‘const sLayer& sLayer::operator=(const sLayer&)’:
source/common/Layer.cpp:99:76: error: ‘memcpy’ was not declared in this scope
memcpy(m_Tiles, layer.m_Tiles, m_Width * m_Height * sizeof(int));
^
source/common/Layer.cpp: In member function ‘void sLayer::Translate(int, int, int*, int, int)’:
source/common/Layer.cpp:187:58: error: ‘memcpy’ was not declared in this scope
memcpy(old_tiles, tiles, width * height * sizeof(int));
^
scons: *** [source/common/Layer.o] Error 1
scons: building terminated because of errors.
While we're at it, what are the exact dependencies that Sphere needs in order to compile? Like the stuff that I need from Ubuntu's repositories, I mean?