From 5e02be2e6d6eb39268c5c7e7f27075083489e6ea Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Tue, 30 Oct 2007 21:23:11 +0000 Subject: [PATCH] Try to unbreak build by adding the -Iinclude/psdk line again. Build has been broken by hpoussin's commit in r29976. As stated before, Wine components like the "winnt.h" file in include/reactos/wine still refer to include/psdk components (in this case by an #include_next "winnt.h" line). This has to be fixed first. Build probably worked successfully with older RosBE-Windows versions, since they put the include directory to the bundled w32api header files in the global C_INCLUDE_PATH environment variable. svn path=/trunk/; revision=29987 --- reactos/tools/widl/widl.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/widl/widl.mak b/reactos/tools/widl/widl.mak index 57660ecbf1f..9106dc0faf7 100644 --- a/reactos/tools/widl/widl.mak +++ b/reactos/tools/widl/widl.mak @@ -59,7 +59,7 @@ WIDL_OBJECTS = \ WIDL_HOST_CFLAGS = \ -DINT16=SHORT -DYYDEBUG=1 \ -I$(WIDL_BASE) -I$(WPP_BASE) \ - -Iinclude/reactos/wine -Iinclude/reactos \ + -Iinclude/reactos/wine -Iinclude/reactos -Iinclude/psdk \ -I$(INTERMEDIATE_)include $(TOOLS_CFLAGS) WIDL_HOST_LFLAGS = $(TOOLS_LFLAGS)