From b4c6433063b812ce9e489a0c58785b895c46b71b Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 11 Jan 2010 13:54:16 -0600 Subject: [PATCH] winebuild: Do not output an undefined symbol reference for variables. --- tools/winebuild/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winebuild/import.c b/tools/winebuild/import.c index a81d564e0b2..e5e87d32c94 100644 --- a/tools/winebuild/import.c +++ b/tools/winebuild/import.c @@ -508,7 +508,7 @@ static char *create_undef_symbols_file( DLLSPEC *spec ) for (i = 0; i < spec->nb_entry_points; i++) { ORDDEF *odp = &spec->entry_points[i]; - if (odp->type == TYPE_STUB || odp->type == TYPE_ABS) continue; + if (odp->type == TYPE_STUB || odp->type == TYPE_ABS || odp->type == TYPE_VARIABLE) continue; if (odp->flags & FLAG_FORWARD) continue; fprintf( f, "\t%s %s\n", get_asm_ptr_keyword(), asm_name(odp->link_name) ); } -- 2.11.4.GIT