From Benoit Laniel, "I use mingw to cross-compile openscenegraph to win32. However, linux
filesystem is case-sensitive. Here are the modifications needed to make the compiler happy. These are only some include lines rewritten (Io.h to io.h, Windows.h to windows.h etc.) for version 2.3.7."
This commit is contained in:
@@ -20,9 +20,9 @@
|
||||
#endif
|
||||
|
||||
#if defined(WIN32) && !defined(__CYGWIN__)
|
||||
#include <Io.h>
|
||||
#include <Windows.h>
|
||||
#include <Winbase.h>
|
||||
#include <io.h>
|
||||
#include <windows.h>
|
||||
#include <winbase.h>
|
||||
#elif defined(__APPLE__) && defined(APPLE_PRE_10_3)
|
||||
#include <mach-o/dyld.h>
|
||||
#else // all other unix
|
||||
|
||||
Reference in New Issue
Block a user