Changeset 42288 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jul 20, 2012 6:30:53 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 79346
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/Makefile.kmk
r42243 r42288 28 28 VBoxDisp_SYSSUFF = .dll 29 29 VBoxDisp_SDKS = ReorderCompilerIncs $(VBOX_WINDDK_GST_NT4) 30 VBoxDisp_DEFS.x86 = _WIN32_WINNT=0x0501 31 ifndef VBOX_USE_VCC100 32 VBoxDisp_DEFS.amd64 = _WIN32_WINNT=0x0500 # <- otherwise the build will fail due to DDK header inconsistencies 33 endif 30 VBoxDisp_DEFS.x86 = _WIN32_WINNT=0x0501 34 31 VBoxDisp_DEFS = VBOX_WITH_DDRAW 35 32 VBoxDisp_DEFS += LOG_TO_BACKDOOR #LOG_ENABLED -
trunk/src/VBox/Additions/WINNT/VBoxCredProv/Makefile.kmk
r42220 r42288 22 22 VBoxCredProv_TEMPLATE = VBOXGUESTR3DLL 23 23 VBoxCredProv_DEFS = VBGL_VBOXGUEST VBOX_WITH_HGCM VBOX_WITH_SENS UNICODE 24 ifdef VBOX_USE_VCC10025 24 VBoxCredProv_SDKS = ReorderCompilerIncs $(VBOX_WINPSDK_GST_WLH) 26 else27 VBoxCredProv_SDKS.x86 = WINDDK28 endif29 25 VBoxCredProv_SOURCES = \ 30 26 VBoxCredentialProvider.cpp \ … … 37 33 VBoxCredProvUtils.cpp 38 34 39 ifndef VBOX_USE_VCC10040 #41 # Since this is not the default SDK we have to navigate manually to it.42 #43 VBOX_PATH_PSDK_200702 := \44 $(PATH_DEVTOOLS)/win.x86/sdk/x200702/45 46 VBoxCredProv_INCS := \47 $(VBOX_PATH_PSDK_200702)/Include48 VBoxCredProv_LIBS.x86 := \49 $(VBOX_PATH_PSDK_200702)/Lib/Uuid.Lib \50 $(VBOX_PATH_PSDK_200702)/Lib/credui.lib \51 $(VBOX_PATH_PSDK_200702)/Lib/Secur32.Lib \52 $(VBOX_PATH_PSDK_200702)/Lib/ShLwApi.Lib \53 $(VBOX_PATH_PSDK_200702)/Lib/NetAPI32.Lib54 VBoxCredProv_LIBS.amd64 := \55 $(VBOX_PATH_PSDK_200702)/Lib/x64/Uuid.Lib \56 $(VBOX_PATH_PSDK_200702)/Lib/x64/credui.lib \57 $(VBOX_PATH_PSDK_200702)/Lib/x64/Secur32.Lib \58 $(VBOX_PATH_PSDK_200702)/Lib/x64/ShLwApi.Lib \59 $(VBOX_PATH_PSDK_200702)/Lib/x64/NetAPI32.Lib60 endif61 62 35 VBoxCredProv_LIBS = \ 63 36 $(VBOX_LIB_IPRT_GUEST_R3) \ 64 37 $(VBOX_LIB_VBGL_R3) 65 ifdef VBOX_USE_VCC10066 38 VBoxCredProv_LIBS += \ 67 39 $(PATH_SDK_$(VBOX_WINPSDK_GST_WLH)_LIB)/credui.lib \ 68 40 $(PATH_SDK_$(VBOX_WINPSDK_GST_WLH)_LIB)/Secur32.Lib \ 69 41 $(PATH_SDK_$(VBOX_WINPSDK_GST_WLH)_LIB)/NetAPI32.Lib 70 endif71 42 72 43 include $(FILE_KBUILD_SUB_FOOTER) -
trunk/src/VBox/Additions/WINNT/VBoxTray/Makefile.kmk
r42239 r42288 25 25 VBoxTray_DEBUG_INSTTYPE = both 26 26 endif 27 if defined(VBOX_USE_VCC100) || defined(VBOX_USE_VCC110) 28 VBoxTray_SDKS = ReorderCompilerIncs $(VBOX_WINDDK_GST) 29 endif 27 VBoxTray_SDKS = ReorderCompilerIncs $(VBOX_WINDDK_GST) 30 28 VBoxTray_DEFS = VBOX_WITH_HGCM LOG_TO_BACKDOOR 31 29 VBoxTray_INCS = ../include 32 if !defined(VBOX_USE_VCC100) && !defined(VBOX_USE_VCC110)33 include $(KBUILD_PATH)/sdks/WINDDK.kmk # WTF is this about?34 VBoxTray_INCS += $(PATH_SDK_WINDDK_INC_API) $(PATH_SDK_WINDDK_INC_DDK)35 endif36 30 VBoxTray_SOURCES = \ 37 31 VBoxTray.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.