Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1f0a9c4c
Commit
1f0a9c4c
authored
Apr 24, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Build modules that use msvcrt as PE builtins.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
76e6883a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
makedep.c
tools/makedep.c
+3
-1
No files found.
tools/makedep.c
View file @
1f0a9c4c
...
...
@@ -2077,7 +2077,8 @@ static int is_cross_compiled( struct makefile *make )
!
make
->
is_win16
&&
!
strarray_exists
(
&
make
->
imports
,
"kernel"
)
&&
(
make
->
testdll
||
!
make
->
object_files
.
count
));
!
make
->
object_files
.
count
||
strarray_exists
(
&
make
->
extradllflags
,
"-mno-cygwin"
)));
}
...
...
@@ -2951,6 +2952,7 @@ static void output_source_default( struct makefile *make, struct incl_file *sour
find_src_file
(
make
,
replace_extension
(
source
->
name
,
".c"
,
".spec"
)));
int
need_cross
=
(
crosstarget
&&
(
make
->
testdll
||
strarray_exists
(
&
make
->
extradllflags
,
"-mno-cygwin"
)
||
(
source
->
file
->
flags
&
FLAG_C_IMPLIB
)
||
(
make
->
module
&&
make
->
staticlib
)));
int
need_obj
=
(
!
need_cross
||
...
...
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