Changeset 46147 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- May 17, 2013 3:35:09 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85846
- Location:
- trunk/src/VBox/Additions/x11
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r42261 r46147 76 76 endif 77 77 78 # 32-bit version for the 64-bit Linux Additions 79 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64) 80 ifneq ($(VBOX_WITH_COMPATIBLE_LINUX_GUEST_PACKAGE),) 81 PROGRAMS += VBoxClient_32 82 VBoxClient_32_EXTENDS = VBoxClient 83 VBoxClient_32_TEMPLATE = NewVBoxGuestR3Exe_X86 84 VBoxClient_32_NAME = VBoxClient 85 endif 86 endif 87 78 88 ifdef VBOX_X11_SEAMLESS_GUEST 79 89 if defined(VBOX_WITH_TESTCASES) && !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_SDK) -
trunk/src/VBox/Additions/x11/vboxmouse/Makefile.kmk
r44528 r46147 239 239 endif # neq ($(KBUILD_TARGET),linux) 240 240 241 # 32-bit modules for the 64-bit Linux Additions 242 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64) 243 ifneq ($(VBOX_WITH_COMPATIBLE_LINUX_GUEST_PACKAGE),) 244 SYSMODS += vboxmouse_drv_32 245 vboxmouse_drv_32_EXTENDS = vboxmouse_drv 246 vboxmouse_drv_32_TEMPLATE = VBOXGUESTR3XF86MOD_X86 247 vboxmouse_drv_32_NAME = vboxmouse_drv 248 $(foreach i,$(filter vboxmouse_drv_%,$(DLLS)),$(eval DLLS += $(i)_32)) 249 $(foreach i,$(filter vboxmouse_drv_%_32,$(DLLS)),$(eval $(i)_EXTENDS = $(subst _32,,$(i)))) 250 $(foreach i,$(filter vboxmouse_drv_%_32,$(DLLS)),$(eval $(i)_TEMPLATE = VBOXGUESTR3XORGMOD_X86)) 251 $(foreach i,$(filter vboxmouse_drv_%_32,$(DLLS)),$(eval $(i)_NAME = $(subst _32,,$(i)))) 252 endif 253 endif 241 254 242 255 ifdef VBOX_USE_SYSTEM_XORG_HEADERS -
trunk/src/VBox/Additions/x11/vboxvideo/Makefile.kmk
r46021 r46147 333 333 334 334 335 # 32-bit modules for the 64-bit Linux Additions 336 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64) 337 ifneq ($(VBOX_WITH_COMPATIBLE_LINUX_GUEST_PACKAGE),) 338 SYSMODS += vboxvideo_drv_32 339 vboxvideo_drv_32_EXTENDS = vboxvideo_drv 340 vboxvideo_drv_32_TEMPLATE = VBOXGUESTR3XF86MOD_X86 341 vboxvideo_drv_32_NAME = vboxvideo_drv 342 $(foreach i,$(filter vboxvideo_drv_%,$(DLLS)),$(eval DLLS += $(i)_32)) 343 $(foreach i,$(filter vboxvideo_drv_%_32,$(DLLS)),$(eval $(i)_EXTENDS = $(subst _32,,$(i)))) 344 $(foreach i,$(filter vboxvideo_drv_%_32,$(DLLS)),$(eval $(i)_TEMPLATE = VBOXGUESTR3XORGMOD_X86)) 345 $(foreach i,$(filter vboxvideo_drv_%_32,$(DLLS)),$(eval $(i)_NAME = $(subst _32,,$(i)))) 346 endif 347 endif 348 335 349 ifdef VBOX_USE_SYSTEM_XORG_HEADERS 336 350 # Build using local X.Org headers. We assume X.Org Server 1.7 or later. … … 351 365 endif 352 366 353 354 367 # Check the undefined symbols in the X.Org modules against lists of allowed 355 368 # symbols. Not very elegant, but it will catch problems early.
Note:
See TracChangeset
for help on using the changeset viewer.