File chapping-0.43-gcc43.patch of Package chapping
--- game/team.h +++ game/team.h @@ -14,7 +14,7 @@ Team(); ~Team(); - void init(Game::team_t t,const Theme *t); + void init(Game::team_t at,const Theme *ath); void update(); void shutdown(); --- game/theme.cpp +++ game/theme.cpp @@ -1,6 +1,7 @@ #include "theme.h" #include <iostream> #include <fstream> +#include <cstdlib> using namespace std; --- library/controlmanager.h +++ library/controlmanager.h @@ -3,6 +3,7 @@ #include <SDL.h> #include <vector> +#include <algorithm> #include "game.h" #include "control.h" --- library/timemanager.h +++ library/timemanager.h @@ -5,6 +5,7 @@ #include "game.h" #include <list> +#include <algorithm> class Timer;