Fix for definitions checking. Now it should work with MinGW.

This commit is contained in:
Sergey Sharybin 2010-11-11 19:28:10 +00:00
parent 3e01338094
commit b96bd0a732

@ -2036,7 +2036,7 @@ static void WM_OT_quit_blender(wmOperatorType *ot)
}
/* *********************** */
#ifdef WIN32 && !defined(FREE_WINDOWS)
#if defined(WIN32) && !defined(FREE_WINDOWS)
static int console= 1;
void WM_toggle_console(bContext *C, short show)
{
@ -3148,7 +3148,7 @@ void wm_operatortype_init(void)
WM_operatortype_append(WM_OT_splash);
WM_operatortype_append(WM_OT_search_menu);
WM_operatortype_append(WM_OT_call_menu);
#ifdef WIN32 && !defined(FREE_WINDOWS)
#if defined(WIN32) && !defined(FREE_WINDOWS)
WM_operatortype_append(WM_OT_toggle_console);
#endif