Commit d33f0a49 authored by Martin Storsjo's avatar Martin Storsjo Committed by Alexandre Julliard

makedep: Set use_msvcrt for ucrtbase imports as well.

parent 1fecaae9
......@@ -2907,7 +2907,8 @@ static void update_makefile( const char *path )
make->use_msvcrt = strarray_exists( &make->appmode, "-mno-cygwin" );
for (i = 0; i < make->imports.count && !make->use_msvcrt; i++)
make->use_msvcrt = !strncmp( make->imports.str[i], "msvcr", 5 );
make->use_msvcrt = !strncmp( make->imports.str[i], "msvcr", 5 ) ||
!strcmp( make->imports.str[i], "ucrtbase" );
make->install_lib_rules = empty_strarray;
make->install_dev_rules = empty_strarray;
......
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