Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
2467c06a
Commit
2467c06a
authored
Apr 01, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Check for delayed import before the library is parsed, in case the…
winebuild: Check for delayed import before the library is parsed, in case the real module name is different.
parent
a59210a6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
import.c
tools/winebuild/import.c
+2
-1
No files found.
tools/winebuild/import.c
View file @
2467c06a
...
...
@@ -226,6 +226,7 @@ static int read_import_lib( struct import *imp )
struct
stat
stat
;
struct
import
*
prev_imp
;
DLLSPEC
*
spec
=
imp
->
spec
;
int
delayed
=
is_delayed_import
(
spec
->
file_name
);
f
=
open_input_file
(
NULL
,
imp
->
full_name
);
fstat
(
fileno
(
f
),
&
stat
);
...
...
@@ -244,7 +245,7 @@ static int read_import_lib( struct import *imp )
return
0
;
/* the same file was already loaded, ignore this one */
}
if
(
is_delayed_import
(
spec
->
file_name
)
)
if
(
delayed
)
{
imp
->
delay
=
1
;
nb_delayed
++
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment