Changeset 106843 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Nov 6, 2024 1:48:54 AM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 165755
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/InstallHelper/Makefile.kmk
r106438 r106843 33 33 34 34 # 35 # NSIS plugins always have to be compiled in 32-bit! 35 # Stripped down template for arm64. 36 # 37 TEMPLATE_VBoxGuestInstallerHelperTemplateWithFewerLibs = hack 38 TEMPLATE_VBoxGuestInstallerHelperTemplateWithFewerLibs_EXTENDS := VBoxGuestR3Dll 39 TEMPLATE_VBoxGuestInstallerHelperTemplateWithFewerLibs_LATE_LIBS.x86 = \ 40 $(filter-out %/VBoxGuestR3LibShared-x86.lib,$(TEMPLATE_VBoxGuestR3Dll_LATE_LIBS.x86)) 41 42 # 43 # NSIS plugins have to match the NSIS architecture, so 32-bit x86 in our case. 36 44 # 37 45 # Note! Installation is required for repacking Guest Additions 38 46 # 39 47 DLLS += VBoxGuestInstallHelper 40 VBoxGuestInstallHelper_TEMPLATE := VBoxGuestR3Dll 41 if1of ($(KBUILD_TARGET_ARCH), amd64) 42 VBoxGuestInstallHelper_BLD_TRG_ARCH := x86 43 endif 48 VBoxGuestInstallHelper_TEMPLATE := VBoxGuestInstallerHelperTemplateWithFewerLibs 49 VBoxGuestInstallHelper_BLD_TRG_ARCH := x86 44 50 VBoxGuestInstallHelper_INST := repackadd/resources/VBoxGuestInstallHelper/ 45 51 ifdef VBOX_SIGN_ADDITIONS # (See the parent makefile.) … … 47 53 VBoxGuestInstallHelper_DEBUG_INSTTYPE := both 48 54 endif 49 VBoxGuestInstallHelper_DEFS := _WIN32_WINNT=0x0400 WIN32_LEAN_AND_MEAN=1 UNICODE _UNICODE 55 VBoxGuestInstallHelper_DEFS := WIN32_LEAN_AND_MEAN=1 UNICODE _UNICODE 56 if1of ($(KBUILD_TARGET_ARCH), x86) 57 VBoxGuestInstallHelper_DEFS := _WIN32_WINNT=0x0400 58 VBoxGuestInstallHelper_VBOX_IMPORT_CHECKER.win.x86 := nt4 59 else if1of ($(KBUILD_TARGET_ARCH), amd64) 60 VBoxGuestInstallHelper_DEFS := _WIN32_WINNT=0x0501 61 VBoxGuestInstallHelper_VBOX_IMPORT_CHECKER.win.x86 := xp 62 else 63 VBoxGuestInstallHelper_DEFS := _WIN32_WINNT=0x0a00 64 VBoxGuestInstallHelper_VBOX_IMPORT_CHECKER.win.x86 := w8 65 endif 50 66 VBoxGuestInstallHelper_SOURCES := \ 51 67 VBoxGuestInstallHelper.cpp \ 52 VBoxGuestInstallHelper.rc 53 VBoxGuestInstallHelper_VBOX_IMPORT_CHECKER.win.x86 := nt4 68 VBoxGuestInstallHelper.rc \ 69 $(PATH_ROOT)/src/VBox/Runtime/generic/RTLogWriteUser-generic.cpp 70 VBoxGuestInstallHelper_INCS := \ 71 $(PATH_ROOT)/src/VBox/Runtime/include 54 72 55 73 include $(FILE_KBUILD_SUB_FOOTER)
Note:
See TracChangeset
for help on using the changeset viewer.