- fixed compilation with standalone wxMSW

This commit is contained in:
Volker Ruppert 2009-03-24 20:17:02 +00:00
parent 91351cb78e
commit 40fde6b89f

View File

@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////
// $Id: main.cc,v 1.396 2009-03-24 16:28:02 vruppert Exp $ // $Id: main.cc,v 1.397 2009-03-24 20:17:02 vruppert Exp $
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////
// //
// Copyright (C) 2002 MandrakeSoft S.A. // Copyright (C) 2002 MandrakeSoft S.A.
@ -26,7 +26,7 @@
#include "bochs.h" #include "bochs.h"
#include "gui/textconfig.h" #include "gui/textconfig.h"
#ifdef WIN32 #if BX_USE_TEXTCONFIG && defined(WIN32)
#include "gui/win32dialog.h" #include "gui/win32dialog.h"
#endif #endif
#include "cpu/cpu.h" #include "cpu/cpu.h"
@ -284,7 +284,7 @@ int bxmain (void) {
#endif #endif
} }
else if (!strcmp(ci_name, "win32config")) { else if (!strcmp(ci_name, "win32config")) {
#ifdef WIN32 #if BX_USE_TEXTCONFIG && defined(WIN32)
init_win32_config_interface(); init_win32_config_interface();
#else #else
BX_PANIC(("configuration interface 'win32config' not present")); BX_PANIC(("configuration interface 'win32config' not present"));