Commit 9d863f04 authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

mingw links in comdlg32, shell32, and advapi32 by default.

parent 76beb5b7
......@@ -137,6 +137,9 @@ int main(int argc, char **argv)
gcc_argv[i++] = argv[j];
}
if (use_stdlib && use_msvcrt) gcc_argv[i++] = "-lmsvcrt";
if (gui_app) gcc_argv[i++] = "-lcomdlg32";
if (gui_app) gcc_argv[i++] = "-lshell32";
gcc_argv[i++] = "-ladvapi32";
}
else
{
......
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