Commit d8202087 authored by Alexandre Julliard's avatar Alexandre Julliard

makedep: Add dependencies on wine/exception.h for widl-generated files.

parent d6e76274
...@@ -693,10 +693,12 @@ static void parse_generated_idl( INCL_FILE *source ) ...@@ -693,10 +693,12 @@ static void parse_generated_idl( INCL_FILE *source )
{ {
add_include( source, "objbase.h", 0, 1 ); add_include( source, "objbase.h", 0, 1 );
add_include( source, "rpcproxy.h", 0, 1 ); add_include( source, "rpcproxy.h", 0, 1 );
add_include( source, "wine/exception.h", 0, 1 );
add_include( source, header, 0, 0 ); add_include( source, header, 0, 0 );
} }
else if (strendswith( source->name, "_s.c" )) else if (strendswith( source->name, "_s.c" ))
{ {
add_include( source, "wine/exception.h", 0, 1 );
add_include( source, header, 0, 0 ); add_include( source, header, 0, 0 );
} }
else if (!strcmp( source->name, "dlldata.c" )) else if (!strcmp( source->name, "dlldata.c" ))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment