Commit 32afe1d9 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

makedep: Make unix libs depend on ntdll.so.

parent 1b5ea62e
...@@ -3362,7 +3362,10 @@ static void output_module( struct makefile *make ) ...@@ -3362,7 +3362,10 @@ static void output_module( struct makefile *make )
strcat( unix_lib, dll_ext ); strcat( unix_lib, dll_ext );
if (!strarray_exists( &make->extradllflags, "-nodefaultlibs" )) if (!strarray_exists( &make->extradllflags, "-nodefaultlibs" ))
{
strarray_add( &unix_imports, "ntdll" ); strarray_add( &unix_imports, "ntdll" );
strarray_add( &unix_deps, obj_dir_path( top_makefile, "dlls/ntdll/ntdll.so" ));
}
strarray_add( &unix_imports, "winecrt0" ); strarray_add( &unix_imports, "winecrt0" );
strarray_addall( &unix_libs, add_import_libs( make, &unix_deps, unix_imports, 0, 1 )); strarray_addall( &unix_libs, add_import_libs( make, &unix_deps, unix_imports, 0, 1 ));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment