From bd5d12710413e8e78638c1ea94cc91c5f6fa111c Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 5 Mar 2018 00:07:53 +0100 Subject: [PATCH] [DBGHELPHOST] Fix the *nix build. --- dll/win32/dbghelp/cpu_i386.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dll/win32/dbghelp/cpu_i386.c b/dll/win32/dbghelp/cpu_i386.c index 592f56edde7..86e8fdbdbec 100644 --- a/dll/win32/dbghelp/cpu_i386.c +++ b/dll/win32/dbghelp/cpu_i386.c @@ -20,13 +20,15 @@ #include +#ifndef DBGHELP_STATIC_LIB #include "ntstatus.h" #define WIN32_NO_STATUS #include "dbghelp_private.h" -#ifndef DBGHELP_STATIC_LIB #include "wine/winbase16.h" #include "winternl.h" #include "wine/debug.h" +#else +#include "dbghelp_private.h" #endif WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);