Changeset 66826 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Wine_new
- Timestamp:
- May 8, 2017 4:53:25 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Wine_new
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Wine_new/Makefile.kmk
r65381 r66826 52 52 TEMPLATE_VBoxGuestWineDLL_CFLAGS = $(filter-out -WX,$(TEMPLATE_VBoxGuestR3Dll_CFLAGS)) \ 53 53 -wd4100 -wd4204 -wd4245 -wd4305 -wd4018 -wd4389 -wd4221 -wd4334 -wd4267 54 if1of ($(VBOX_VCC_TOOL_STEM), VCC120) 55 # -wd4005: v7.1\include\sal_supp.h(57) : warning C4005: '__useHeader' : macro redefinition 56 # -wd4133: swapchain.c(384) : warning C4133: 'function' : incompatible types - from 'IDirect3DSwapChain9 *' to 'IDirect3DSwapChain9Ex *' 57 TEMPLATE_VBoxGuestWineDLL_CFLAGS += -wd4005 -wd4133 58 endif 54 59 55 60 # … … 65 70 TEMPLATE_VBoxGuestWineD3DxDLL_DEFS = VBOX_WINE_WITH_IPRT 66 71 TEMPLATE_VBoxGuestWineD3DxDLL_CFLAGS = -wd4100 -wd4204 -wd4245 -wd4305 72 if1of ($(VBOX_VCC_TOOL_STEM), VCC120) 73 TEMPLATE_VBoxGuestWineD3DxDLL_CFLAGS += -wd4005 74 endif 67 75 TEMPLATE_VBoxGuestWineD3DxDLL_LIBS = \ 68 76 $(VBOX_LIB_IPRT_GUEST_R3) \ -
trunk/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/port.h
r48345 r66826 276 276 277 277 #ifndef HAVE_ISINF 278 # undef isinf /* VBox: _MSC_VER >= RT_MSC_VER_VC120 has complicated macro implementation in math.h */ 278 279 int isinf(double x); 279 280 #endif 280 281 281 282 #ifndef HAVE_ISNAN 283 # undef isnan /* VBox: _MSC_VER >= RT_MSC_VER_VC120 has complicated macro implementation in math.h */ 282 284 int isnan(double x); 283 285 #endif
Note:
See TracChangeset
for help on using the changeset viewer.