Module: wine Branch: master Commit: 2cf256686e5f5c314bbdda16e91327a636cad4b8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=2cf256686e5f5c314bbdda16e...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Jul 1 10:36:51 2020 +0200
makefiles: Use -munix when building a Unix library.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
tools/makedep.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/tools/makedep.c b/tools/makedep.c index 743eaf6e35..bdeae8f65a 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -3355,6 +3355,7 @@ static void output_module( struct makefile *make ) output_filename( tools_path( make, "winegcc" )); output( "\n" ); output_winegcc_command( make, 0 ); + output_filename( "-munix" ); output_filename( "-shared" ); if (strarray_exists( &make->extradllflags, "-nodefaultlibs" )) output_filename( "-nodefaultlibs" ); output_filenames_obj_dir( make, make->unixobj_files );