From ed0e3097d497a7104c2d2f07fa555e02202eff96 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Tue, 23 Jun 2009 19:46:52 +0000 Subject: [PATCH] # Fixed build on Linux This was SVN commit r6921. --- source/lib/external_libraries/dbghelp.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/lib/external_libraries/dbghelp.cpp b/source/lib/external_libraries/dbghelp.cpp index 5539f14b3b..1d61e98785 100644 --- a/source/lib/external_libraries/dbghelp.cpp +++ b/source/lib/external_libraries/dbghelp.cpp @@ -16,6 +16,9 @@ */ #include "precompiled.h" + +#if OS_WIN + #include "dbghelp.h" // define extension function pointers @@ -34,3 +37,5 @@ void dbghelp_ImportFunctions() #include "dbghelp_funcs.h" #undef FUNC } + +#endif // OS_WIN