Changeset 28303 in vbox for trunk/src/VBox
- Timestamp:
- Apr 14, 2010 1:17:56 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60057
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/Makefile.kmk
r27703 r28303 139 139 # C library is not available. 140 140 # 141 ## @todo We're quite probably using the wrong template here. 141 142 VBoxGuestR3LibXFree86_TEMPLATE = VBOXGUESTR3LIB 142 143 VBoxGuestR3LibXFree86_DEFS = \ 143 VBOX_WITH_HGCM VBOX_VBGLR3_XFREE86 \ 144 VBOX_WITH_HGCM \ 145 VBOX_VBGLR3_XFREE86 \ 146 RTMEM_NO_WRAP_TO_EF_APIS \ 144 147 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS,) 145 148 VBoxGuestR3LibXFree86_SOURCES = \ … … 152 155 VBoxGuestR3LibVideo.cpp \ 153 156 VBoxGuestR3LibRuntimeXF86.cpp 154 VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow155 157 VBoxGuestR3LibXFree86_INCS = \ 156 158 $(VBOX_PATH_X11_XFREE_4_3)/programs/Xserver/hw/xfree86/common/ \ … … 160 162 $(VBOX_PATH_X11_XFREE_4_3)/exports/include/X11 161 163 164 VBoxGuestR3LibRuntimeXF86.cpp_CXXFLAGS = -Wno-shadow 162 165 163 166 include $(KBUILD_PATH)/subfooter.kmk -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3LibRuntimeXF86.cpp
r27687 r28303 2 2 /** @file 3 3 * VBoxGuestR3Lib - Ring-3 Support Library for VirtualBox guest additions, 4 * implements the minimum of runtime functions needed for XFree86 driver5 * code.4 * implements the minimum of runtime functions needed for 5 * XFree86 driver code. 6 6 */ 7 7 8 8 /* 9 * Copyright (C) 2007-20 09Sun Microsystems, Inc.9 * Copyright (C) 2007-2010 Sun Microsystems, Inc. 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 46 46 } 47 47 48 /* This is risky as it restricts call to the ANSI format type specifiers. */ 48 49 RTDECL(size_t) RTStrPrintf(char *pszBuffer, size_t cchBuffer, const char *pszFormat, ...) 49 50 { … … 140 141 xfree(pv); 141 142 } 143 -
trunk/src/VBox/Runtime/Makefile.kmk
r28271 r28303 879 879 RuntimeGuestR3Mini_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST)) 880 880 RuntimeGuestR3Mini_SOURCES = \ 881 common/alloc/alloc.cpp \ 881 882 common/err/errmsg.cpp \ 882 883 common/err/errmsgxpcom.cpp \ … … 927 928 common/string/utf-8-case.cpp \ 928 929 common/string/utf-16.cpp \ 930 common/table/avlpv.cpp \ 929 931 generic/pathhost-generic.cpp \ 930 932 generic/RTAssertShouldPanic-generic.cpp \ 931 933 r3/alloc.cpp \ 934 r3/alloc-ef.cpp \ 932 935 r3/fileio.cpp \ 933 936 r3/fs.cpp 934 937 RuntimeGuestR3Mini_SOURCES.freebsd = \ 938 r3/posix/alloc-posix.cpp \ 935 939 r3/posix/env-posix.cpp \ 936 940 r3/posix/fileio-posix.cpp \ … … 938 942 r3/posix/utf8-posix.cpp 939 943 RuntimeGuestR3Mini_SOURCES.linux = \ 944 r3/posix/alloc-posix.cpp \ 940 945 r3/posix/env-posix.cpp \ 941 946 r3/posix/fileio-posix.cpp \ … … 943 948 r3/posix/utf8-posix.cpp 944 949 RuntimeGuestR3Mini_SOURCES.solaris = \ 950 r3/posix/alloc-posix.cpp \ 945 951 r3/posix/env-posix.cpp \ 946 952 r3/posix/fileio-posix.cpp \ … … 948 954 r3/posix/utf8-posix.cpp 949 955 RuntimeGuestR3Mini_SOURCES.win = \ 956 r3/win/alloc-win.cpp \ 950 957 r3/win/fileio-win.cpp \ 951 958 r3/win/path-win.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.