From 43e68713a944a349eb963b1a4a5aefb7b7cabf1f Mon Sep 17 00:00:00 2001 From: bztdlinux Date: Mon, 16 Nov 2009 00:16:35 +0000 Subject: [PATCH] Fix build on Windows when there is no Config.h git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4583 8ced0084-cf51-0410-be5f-012b33b47a6e --- Externals/Lua/luaconf.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Externals/Lua/luaconf.h b/Externals/Lua/luaconf.h index 2c46a4b340..be7e4fe430 100644 --- a/Externals/Lua/luaconf.h +++ b/Externals/Lua/luaconf.h @@ -10,7 +10,11 @@ #include #include +// can't include Common.h because it's C++ +// the following is OK because on Windows, Lua needs nothing special +#ifndef _WIN32 #include "../../Source/Core/Common/Src/Config.h" +#endif /* ** ==================================================================