Changeset 31409 in vbox for trunk/src/VBox/Additions/common/VBoxGuestLib
- Timestamp:
- Aug 5, 2010 1:47:41 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r31364 r31409 152 152 RTMEM_NO_WRAP_TO_EF_APIS \ 153 153 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,) 154 VBoxGuestR3LibXFree86_CXXFLAGS.linux = \ 155 $(VBOX_GCC_fno-stack-protector) -ffreestanding 154 156 VBoxGuestR3LibXFree86_SOURCES = \ 155 157 VBoxGuestR3Lib.cpp \ -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibGuestProp.cpp
r31386 r31409 30 30 *******************************************************************************/ 31 31 #include <iprt/string.h> 32 #include <iprt/mem.h> 32 #ifndef VBOX_VBGLR3_XFREE86 33 # include <iprt/mem.h> 34 #endif 33 35 #include <iprt/assert.h> 34 #include <iprt/cpp/autores.h>35 36 #include <iprt/stdarg.h> 36 37 #include <VBox/log.h> -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibVideo.cpp
r31384 r31409 30 30 *******************************************************************************/ 31 31 #include <iprt/assert.h> 32 #include <iprt/mem.h> 32 #ifndef VBOX_VBGLR3_XFREE86 33 # include <iprt/mem.h> 34 #endif 33 35 #include <iprt/string.h> 34 36 #include <VBox/log.h> … … 43 45 # undef memcpy 44 46 # define memcpy xf86memcpy 47 extern "C" void* xf86memset(const void*,int,xf86size_t); 48 # undef memset 49 # define memset xf86memset 45 50 #endif /* VBOX_VBGLR3_XFREE86 */ 46 51
Note:
See TracChangeset
for help on using the changeset viewer.