[Super-tux-commit] supertux/lib/math physic.cpp,1.3,1.4 physic.h,1.4,1.5 vector.cpp,1.2,1.3
Brought to you by:
wkendrick
From: Tobias G. <to...@us...> - 2004-07-22 19:08:00
|
Update of /cvsroot/super-tux/supertux/lib/math In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9064/lib/math Modified Files: physic.cpp physic.h vector.cpp Log Message: Had to change the #includes of dependend headers from "dir/header.h" to "../dir/header.h", so those 'dependencies' work correctly, if you want to use those headers from $(includedir) so to speak in a 3rd party projects. Index: vector.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/math/vector.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- vector.cpp 21 Jul 2004 16:51:52 -0000 1.2 +++ vector.cpp 22 Jul 2004 19:07:50 -0000 1.3 @@ -19,7 +19,7 @@ #include <cmath> -#include "math/vector.h" +#include "../math/vector.h" using namespace SuperTux; Index: physic.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/math/physic.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- physic.cpp 21 Jul 2004 16:51:51 -0000 1.3 +++ physic.cpp 22 Jul 2004 19:07:50 -0000 1.4 @@ -20,8 +20,8 @@ #include <cstdio> -#include "math/physic.h" -#include "special/timer.h" +#include "../math/physic.h" +#include "../special/timer.h" using namespace SuperTux; Index: physic.h =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/math/physic.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- physic.h 21 Jul 2004 16:51:52 -0000 1.4 +++ physic.h 22 Jul 2004 19:07:50 -0000 1.5 @@ -21,7 +21,7 @@ #ifndef SUPERTUX_PHYSIC_H #define SUPERTUX_PHYSIC_H -#include "math/vector.h" +#include "../math/vector.h" namespace SuperTux { |