mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 15:48:48 +00:00
24579ceba9
It needs the same workaround as our dev tools (see bug #1800764)
11 lines
222 B
C
11 lines
222 B
C
|
|
#ifndef CXXTEST_MINGW
|
|
#define CXXTEST_MINGW
|
|
|
|
// HACK to allow building with the SDL backend on MinGW
|
|
// see bug #1800764 "TOOLS: MinGW tools building broken"
|
|
#ifdef main
|
|
#undef main
|
|
#endif // main
|
|
|
|
#endif // CXXTEST_MINGW
|