Alexandre Julliard : d3d11: Build with msvcrt.

Alexandre Julliard julliard at winehq.org
Tue Jul 2 15:32:02 CDT 2019


Module: wine
Branch: master
Commit: d216374962b199cf028d07194fd3b1ebfb6d4a35
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=d216374962b199cf028d07194fd3b1ebfb6d4a35

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Jul  2 09:56:08 2019 +0200

d3d11: Build with msvcrt.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3d11/Makefile.in   | 2 ++
 dlls/d3d11/async.c       | 3 ---
 dlls/d3d11/buffer.c      | 3 ---
 dlls/d3d11/d3d11_main.c  | 3 ---
 dlls/d3d11/device.c      | 3 ---
 dlls/d3d11/inputlayout.c | 3 ---
 dlls/d3d11/shader.c      | 3 ---
 dlls/d3d11/state.c       | 3 ---
 dlls/d3d11/texture.c     | 3 ---
 dlls/d3d11/utils.c       | 3 ---
 dlls/d3d11/view.c        | 3 ---
 11 files changed, 2 insertions(+), 30 deletions(-)

diff --git a/dlls/d3d11/Makefile.in b/dlls/d3d11/Makefile.in
index 5a56fae..db9e40d 100644
--- a/dlls/d3d11/Makefile.in
+++ b/dlls/d3d11/Makefile.in
@@ -2,6 +2,8 @@ MODULE    = d3d11.dll
 IMPORTLIB = d3d11
 IMPORTS   = dxguid uuid dxgi wined3d
 
+EXTRADLLFLAGS = -mno-cygwin
+
 C_SRCS = \
 	async.c \
 	buffer.c \
diff --git a/dlls/d3d11/async.c b/dlls/d3d11/async.c
index 1a56df9..fd83871 100644
--- a/dlls/d3d11/async.c
+++ b/dlls/d3d11/async.c
@@ -18,9 +18,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #include "d3d11_private.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
diff --git a/dlls/d3d11/buffer.c b/dlls/d3d11/buffer.c
index f2d32ed..ed9ee13 100644
--- a/dlls/d3d11/buffer.c
+++ b/dlls/d3d11/buffer.c
@@ -17,9 +17,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #include "d3d11_private.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
diff --git a/dlls/d3d11/d3d11_main.c b/dlls/d3d11/d3d11_main.c
index b0a32ac..a5854a9 100644
--- a/dlls/d3d11/d3d11_main.c
+++ b/dlls/d3d11/d3d11_main.c
@@ -20,9 +20,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #define D3D11_INIT_GUID
 #include "d3d11_private.h"
 
diff --git a/dlls/d3d11/device.c b/dlls/d3d11/device.c
index 31292e9..5fac117 100644
--- a/dlls/d3d11/device.c
+++ b/dlls/d3d11/device.c
@@ -17,9 +17,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #define NONAMELESSUNION
 #include "d3d11_private.h"
 
diff --git a/dlls/d3d11/inputlayout.c b/dlls/d3d11/inputlayout.c
index de40eda..9bee927 100644
--- a/dlls/d3d11/inputlayout.c
+++ b/dlls/d3d11/inputlayout.c
@@ -17,9 +17,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #include "d3d11_private.h"
 #include "winternl.h"
 
diff --git a/dlls/d3d11/shader.c b/dlls/d3d11/shader.c
index a506aac..6bec797 100644
--- a/dlls/d3d11/shader.c
+++ b/dlls/d3d11/shader.c
@@ -17,9 +17,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #include "d3d11_private.h"
 #include "winternl.h"
 
diff --git a/dlls/d3d11/state.c b/dlls/d3d11/state.c
index 6de3502..92b75f8 100644
--- a/dlls/d3d11/state.c
+++ b/dlls/d3d11/state.c
@@ -17,9 +17,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #include "d3d11_private.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
diff --git a/dlls/d3d11/texture.c b/dlls/d3d11/texture.c
index 7882195..d54f22f 100644
--- a/dlls/d3d11/texture.c
+++ b/dlls/d3d11/texture.c
@@ -18,9 +18,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #include "d3d11_private.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
diff --git a/dlls/d3d11/utils.c b/dlls/d3d11/utils.c
index 0555603..065436c 100644
--- a/dlls/d3d11/utils.c
+++ b/dlls/d3d11/utils.c
@@ -17,9 +17,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #include "d3d11_private.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(d3d11);
diff --git a/dlls/d3d11/view.c b/dlls/d3d11/view.c
index 93d0b78..a6eddf5 100644
--- a/dlls/d3d11/view.c
+++ b/dlls/d3d11/view.c
@@ -17,9 +17,6 @@
  *
  */
 
-#include "config.h"
-#include "wine/port.h"
-
 #define NONAMELESSUNION
 #include "d3d11_private.h"
 




More information about the wine-cvs mailing list