Changeset 69079 in vbox
- Timestamp:
- Oct 13, 2017 3:27:12 PM (7 years ago)
- Location:
- trunk/src/VBox/Additions/x11
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/undefined_xorg
r58635 r69079 4 4 # it fixing that would add additional complexity. 5 5 6 __assert_fail 6 7 calloc 7 8 chdir -
trunk/src/VBox/Additions/x11/vboxvideo/Makefile.kmk
r69078 r69079 40 40 $(VBOX_GRAPHICS_INCS) 41 41 vboxvideo_override_INCLUDES = \ 42 -include $(PATH_ROOT)/src/VBox/Additions/x11/vboxvideo/HGSMIMemAlloc.h 42 -include $(PATH_ROOT)/src/VBox/Additions/x11/vboxvideo/VBoxVideoIPRT.h \ 43 -include $(PATH_ROOT)/src/VBox/Additions/x11/vboxvideo/HGSMIMemAlloc.h 43 44 44 45 LIBRARIES += vboxvideo_drv_lib … … 48 49 # 49 50 vboxvideo_drv_lib_TEMPLATE = VBOXGUESTR3XORGMOD 51 # We are relying in the include guard in the two headers below to stop the more 52 # generic ones from being included. Not very nice, I know. 50 53 vboxvideo_drv_lib_CFLAGS += $(vboxvideo_override_INCLUDES) 51 54 vboxvideo_drv_lib_CXXFLAGS += $(vboxvideo_override_INCLUDES) … … 60 63 $(PATH_ROOT)/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp \ 61 64 $(PATH_ROOT)/src/VBox/Additions/x11/vboxvideo/hgsmimemalloc.c 65 # $(VBOX_PATH_X11_ROOT)/xorg-server-1.18.0 is for in[blw] and out[blw], xproto 66 # for _X_[UN]LIKELY. 62 67 vboxvideo_drv_lib_INCS = \ 68 $(VBOX_PATH_X11_ROOT)/xorg-server-1.18.0 \ 69 $(VBOX_PATH_X11_ROOT)/xproto-7.0.18 \ 70 $(VBOX_PATH_X11_ROOT)/pixman-0.16.0 \ 63 71 $(PATH_ROOT)/src/VBox/Runtime/include \ 64 72 $(VBOX_GRAPHICS_INCS) … … 88 96 BUILDDEBUG X_BYTE_ORDER=X_LITTLE_ENDIAN DNDEBUG FUNCPROTO=15 NARROWPROTO \ 89 97 IN_MODULE XFree86Module IN_XF86_MODULE IN_RT_STATIC 90 vboxvideo_drv_DEFS += memset=xf86memset memcpy=xf86memcpy91 98 vboxvideo_drv_INCS = \ 92 99 $(VBOX_PATH_X11_XFREE_4_3)/include \ -
trunk/src/VBox/Additions/x11/vboxvideo/getmode.c
r69064 r69079 29 29 30 30 #define NEED_XF86_TYPES 31 #include <iprt/string.h>32 33 31 #include "xf86.h" 34 32 … … 36 34 # include <stdio.h> 37 35 # include <stdlib.h> 36 # include <string.h> 38 37 #endif 39 38 -
trunk/src/VBox/Additions/x11/vboxvideo/pointer.c
r69075 r69079 26 26 */ 27 27 28 #include <VBox/VBoxGuestLib.h>29 30 28 #ifndef PCIACCESS 31 29 # include "xf86Pci.h" … … 35 33 #include "xf86.h" 36 34 #define NEED_XF86_TYPES 37 #include <iprt/string.h>38 35 #include "compiler.h" 39 36 #include "cursorstr.h" … … 44 41 #ifdef XORG_7X 45 42 # include <stdlib.h> 43 # include <string.h> 46 44 #endif 47 45 -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c
r69078 r69079 44 44 45 45 #include "vboxvideo.h" 46 #include <VBox/VBoxGuestLib.h>47 46 #include <VBoxVideoVBE.h> 48 47 … … 252 251 VBVXASSERT(pPixmap != NULL, ("Failed to get the screen pixmap.\n")); 253 252 TRACE_LOG("pPixmap=%p adjustedWidth=%d height=%d pScrn->depth=%d pScrn->bitsPerPixel=%d cbLine=%d pVBox->base=%p pPixmap->drawable.width=%d pPixmap->drawable.height=%d\n", 254 (void *)pPixmap, adjustedWidth, height, pScrn->depth, pScrn->bitsPerPixel, cbLine, pVBox->base, pPixmap->drawable.width, 255 pPixmap->drawable.height); 253 (void *)pPixmap, adjustedWidth, height, pScrn->depth, 254 pScrn->bitsPerPixel, cbLine, pVBox->base, 255 pPixmap->drawable.width, pPixmap->drawable.height); 256 256 if ( adjustedWidth != pPixmap->drawable.width 257 257 || height != pPixmap->drawable.height) -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.h
r69078 r69079 86 86 xf86ErrorF("\nAssertion failed!\n\n"); \ 87 87 xf86ErrorF("%s\n", #expr); \ 88 xf86ErrorF("at %s (%s:%d)\n", RT_GCC_EXTENSION __PRETTY_FUNCTION__, __FILE__, __LINE__); \88 xf86ErrorF("at %s (%s:%d)\n", __func__, __FILE__, __LINE__); \ 89 89 xf86ErrorF out; \ 90 90 FatalError("Assertion"); \ -
trunk/src/VBox/Additions/x11/vboxvideo/vbva.c
r69066 r69079 26 26 */ 27 27 28 #i nclude <VBox/VBoxGuestLib.h>29 30 # include <iprt/string.h>28 #if defined(IN_XF86_MODULE) && !defined(NO_ANSIC) 29 # include "xf86_ansic.h" 30 #endif 31 31 #include "compiler.h" 32 32 … … 35 35 #ifdef XORG_7X 36 36 # include <stdlib.h> 37 # include <string.h> 37 38 #endif 38 39
Note:
See TracChangeset
for help on using the changeset viewer.