Changeset 43588 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Oct 9, 2012 9:15:37 PM (12 years ago)
- Location:
- trunk/src/VBox/Additions/x11
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxmouse/Makefile.kmk
r43278 r43588 239 239 endif # neq ($(KBUILD_TARGET),linux) 240 240 241 242 ifdef VBOX_USE_SYSTEM_XORG_HEADERS 243 # As vboxmouse_drv is not needed at all for X.Org Server 1.7 and later do not 244 # build it in this case. 245 DLLS := $(filter-out vboxmouse_drv_%,$(DLLS)) 246 SYSMODS := $(filter-out vboxmouse_drv%,$(SYSMODS)) 247 endif 248 249 241 250 # Check the undefined symbols in the X.Org modules against lists of allowed 242 251 # symbols. Not very elegant, but it will catch problems early. 243 252 ifdef VBOX_WITH_TESTCASES 244 253 # ifndef VBOX_ONLY_ADDITIONS 254 ifndef VBOX_USE_SYSTEM_XORG_HEADERS 245 255 ifeq ($(KBUILD_TARGET),linux) 246 256 ifeq ($(KBUILD_HOST_ARCH),$(KBUILD_TARGET_ARCH)) … … 361 371 endif # eq ($(KBUILD_HOST_ARCH),$(KBUILD_TARGET_ARCH)) 362 372 endif # eq ($(KBUILD_TARGET),linux) 373 endif # ! VBOX_USE_SYSTEM_XORG_HEADERS 363 374 # endif # ! VBOX_ONLY_ADDITIONS 364 375 endif # VBOX_WITH_TESTCASES -
trunk/src/VBox/Additions/x11/vboxvideo/Makefile.kmk
r43284 r43588 22 22 # Include sub-makefile(s). 23 23 # 24 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk 24 ifndef VBOX_USE_SYSTEM_XORG_HEADERS 25 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk 26 endif 25 27 26 28 vboxvideo_70_DEFS := \ … … 321 323 322 324 325 ifdef VBOX_USE_SYSTEM_XORG_HEADERS 326 # Build using local X.Org headers. We assume X.Org Server 1.7 or later. 327 DLLS := $(filter-out vboxvideo_drv_%,$(DLLS)) vboxvideo_drv_system 328 SYSMODS := $(filter-out vboxvideo_drv%,$(SYSMODS)) 329 vboxvideo_drv_system_TEMPLATE = VBOXGUESTR3XORGMOD 330 vboxvideo_drv_system_CFLAGS := \ 331 $(vboxvideo_drv_70_CFLAGS) -include xorg-server.h 332 vboxvideo_drv_system_DEFS := $(vboxvideo_15_DEFS) 333 vboxvideo_drv_system_INCS += \ 334 $(PATH_ROOT)/src/VBox/Runtime/include \ 335 /usr/include/x11 \ 336 /usr/include/X11/dri \ 337 /usr/include/libdrm \ 338 /usr/include/xorg \ 339 /usr/include/pixman-1 340 vboxvideo_drv_system_SOURCES := $(vboxvideo_drv_15_SOURCES) 341 endif 342 343 323 344 # Check the undefined symbols in the X.Org modules against lists of allowed 324 345 # symbols. Not very elegant, but it will catch problems early. 325 346 ifdef VBOX_WITH_TESTCASES 326 347 # ifndef VBOX_ONLY_ADDITIONS 348 ifndef VBOX_USE_SYSTEM_XORG_HEADERS 327 349 if1of ($(KBUILD_TARGET),linux solaris) 328 350 ifeq ($(KBUILD_HOST_ARCH),$(KBUILD_TARGET_ARCH)) … … 447 469 endif # eq ($(KBUILD_HOST_ARCH),$(KBUILD_TARGET_ARCH)) 448 470 endif # eq ($(KBUILD_TARGET),linux) 471 endif # ! VBOX_USE_SYSTEM_XORG_HEADERS 449 472 # endif # ! VBOX_ONLY_ADDITIONS 450 473 endif # VBOX_WITH_TESTCASES
Note:
See TracChangeset
for help on using the changeset viewer.