winebuild: Ignore 16-bit absolute exports when checking for undefined symbols.
This commit is contained in:
parent
a82ce66048
commit
49d2c208d8
|
@ -468,7 +468,7 @@ static void check_undefined_exports( DLLSPEC *spec )
|
||||||
for (i = 0; i < spec->nb_entry_points; i++)
|
for (i = 0; i < spec->nb_entry_points; i++)
|
||||||
{
|
{
|
||||||
ORDDEF *odp = &spec->entry_points[i];
|
ORDDEF *odp = &spec->entry_points[i];
|
||||||
if (odp->type == TYPE_STUB) continue;
|
if (odp->type == TYPE_STUB || odp->type == TYPE_ABS) continue;
|
||||||
if (odp->flags & FLAG_FORWARD) continue;
|
if (odp->flags & FLAG_FORWARD) continue;
|
||||||
if (find_name( odp->link_name, &undef_symbols ))
|
if (find_name( odp->link_name, &undef_symbols ))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue