Module: wine Branch: master Commit: 931f2e450ad36a6e0eb9678d5791590f4c0d08f1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=931f2e450ad36a6e0eb9678d5...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Jun 20 09:12:13 2019 +0200
shell: Build with msvcrt.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/shell.dll16/Makefile.in | 2 +- dlls/shell.dll16/shell.c | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/dlls/shell.dll16/Makefile.in b/dlls/shell.dll16/Makefile.in index dad637e..97308ee 100644 --- a/dlls/shell.dll16/Makefile.in +++ b/dlls/shell.dll16/Makefile.in @@ -1,7 +1,7 @@ MODULE = shell.dll16 IMPORTS = shell32 user32 gdi32 advapi32
-EXTRADLLFLAGS = -m16 -Wb,--main-module,shell32.dll +EXTRADLLFLAGS = -m16 -mno-cygwin -Wb,--main-module,shell32.dll
C_SRCS = shell.c
diff --git a/dlls/shell.dll16/shell.c b/dlls/shell.dll16/shell.c index 748db67..3e7c32a 100644 --- a/dlls/shell.dll16/shell.c +++ b/dlls/shell.dll16/shell.c @@ -20,15 +20,9 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */
-#include "config.h" -#include "wine/port.h" - #include <stdarg.h> #include <stdlib.h> #include <string.h> -#ifdef HAVE_UNISTD_H -# include <unistd.h> -#endif #include <ctype.h>
#include "windef.h"