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
2477aa7a
Commit
2477aa7a
authored
Aug 05, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Default to an msvcrt build for static libraries.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fb504baa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
Makefile.in
dlls/strmbase/Makefile.in
+0
-2
Makefile.in
dlls/winecrt0/Makefile.in
+0
-2
makedep.c
tools/makedep.c
+3
-1
No files found.
dlls/strmbase/Makefile.in
View file @
2477aa7a
MODULE
=
libstrmbase.a
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
dispatch.c
\
dllfunc.c
\
...
...
dlls/winecrt0/Makefile.in
View file @
2477aa7a
MODULE
=
libwinecrt0.a
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
debug.c
\
delay_load.c
\
...
...
tools/makedep.c
View file @
2477aa7a
...
...
@@ -4160,7 +4160,9 @@ static void load_sources( struct makefile *make )
make
->
extra_targets
=
get_expanded_make_var_array
(
make
,
"EXTRA_TARGETS"
);
if
(
make
->
module
&&
strendswith
(
make
->
module
,
".a"
))
make
->
staticlib
=
make
->
module
;
if
(
make
->
testdll
)
strarray_add
(
&
make
->
extradllflags
,
"-mno-cygwin"
);
if
((
make
->
module
&&
make
->
staticlib
)
||
make
->
testdll
)
strarray_add
(
&
make
->
extradllflags
,
"-mno-cygwin"
);
strarray_addall
(
&
make
->
extradllflags
,
get_expanded_make_var_array
(
make
,
"APPMODE"
));
make
->
disabled
=
make
->
base_dir
&&
strarray_exists
(
&
disabled_dirs
,
make
->
base_dir
);
...
...
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