Alexandre Julliard : winebuild: Don't check variables for undefined exports .

Alexandre Julliard julliard at winehq.org
Wed Dec 30 10:18:11 CST 2009


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Dec 28 21:42:37 2009 +0100

winebuild: Don't check variables for undefined exports.

---

 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 d41a754..0caaffd 100644
--- a/tools/winebuild/import.c
+++ b/tools/winebuild/import.c
@@ -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 ))
         {




More information about the wine-cvs mailing list