behdad / box2d

Automatically exported from code.google.com/p/box2d
2 stars 12 forks source link

b2Timer.cpp includes windows.h with upper-case W #241

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

we are compiling box2d for multiple platforms on a linux build-server using 
MinGW as a cross compiler. Due to case-sensitivity our buildprocess failed 
after updating to the latest box2d.

the culprit is the inclusion of windows.h in b2Timer.cpp, line 25, like this:

#include <Windows.h>

Changing it to 

#include <windows.h>

does the trick.

Keep up the good work!

Original issue reported on code.google.com by badlogicgames on 5 Sep 2011 at 5:33

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r221.

Original comment by erinca...@gmail.com on 8 Sep 2011 at 2:27

GoogleCodeExporter commented 9 years ago
Completed: At revision: 221  

Original comment by erinca...@gmail.com on 8 Sep 2011 at 2:27