Alexandre Julliard : winebuild: Ignore 16-bit absolute exports when checking for undefined symbols.

Alexandre Julliard julliard at winehq.org
Wed Mar 4 09:00:59 CST 2009


Module: wine
Branch: master
Commit: 49d2c208d83fed9a282e6ff4f4f278aef50dbce2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=49d2c208d83fed9a282e6ff4f4f278aef50dbce2

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Mar  4 14:08:35 2009 +0100

winebuild: Ignore 16-bit absolute exports when checking for undefined symbols.

---

 tools/winebuild/import.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/winebuild/import.c b/tools/winebuild/import.c
index fcd958d..1cc3689 100644
--- a/tools/winebuild/import.c
+++ b/tools/winebuild/import.c
@@ -468,7 +468,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) continue;
+        if (odp->type == TYPE_STUB || odp->type == TYPE_ABS) continue;
         if (odp->flags & FLAG_FORWARD) continue;
         if (find_name( odp->link_name, &undef_symbols ))
         {




More information about the wine-cvs mailing list