winebuild: Don't check variables for undefined exports.

oldstable
Alexandre Julliard 2009-12-28 21:42:37 +01:00
parent 2a0fca79ae
commit c4c6fcaff7
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ static void check_undefined_exports( 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;
if (find_name( odp->link_name, &undef_symbols ))
{