Changeset 90829 in vbox for trunk/src/VBox/Additions/common/VBoxGuest/linux
- Timestamp:
- Aug 24, 2021 10:26:07 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 146464
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/linux/Makefile
r89957 r90829 73 73 r0drv/generic/semspinmutex-r0drv-generic.o \ 74 74 common/alloc/alloc.o \ 75 common/checksum/crc32.o \ 75 76 common/err/RTErrConvertFromErrno.o \ 76 77 common/err/RTErrConvertToErrno.o \ … … 107 108 common/string/strformattype.o \ 108 109 common/string/strprintf.o \ 110 common/string/strprintf2.o \ 109 111 common/string/strtonum.o \ 110 112 common/string/utf-8.o \ -
trunk/src/VBox/Additions/common/VBoxGuest/linux/combined-agnostic.c
r83918 r90829 53 53 #undef LOG_GROUP 54 54 #include "common/alloc/alloc.c" 55 #undef LOG_GROUP 56 #include "common/checksum/crc32.c" 55 57 #undef LOG_GROUP 56 58 #include "common/err/errinfo.c" … … 116 118 #include "common/string/strprintf.c" 117 119 #undef LOG_GROUP 120 #include "common/string/strprintf2.c" 121 #undef LOG_GROUP 118 122 #include "common/string/strtonum.c" 119 123 #undef LOG_GROUP -
trunk/src/VBox/Additions/common/VBoxGuest/linux/files_vboxguest
r89957 r90829 38 38 ${PATH_ROOT}/include/iprt/cdefs.h=>include/iprt/cdefs.h \ 39 39 ${PATH_ROOT}/include/iprt/cpuset.h=>include/iprt/cpuset.h \ 40 ${PATH_ROOT}/include/iprt/crc.h=>include/iprt/crc.h \ 40 41 ${PATH_ROOT}/include/iprt/ctype.h=>include/iprt/ctype.h \ 41 42 ${PATH_ROOT}/include/iprt/err.h=>include/iprt/err.h \ … … 113 114 ${PATH_ROOT}/src/VBox/Runtime/common/alloc/alloc.cpp=>common/alloc/alloc.c \ 114 115 ${PATH_ROOT}/src/VBox/Runtime/common/alloc/heapsimple.cpp=>common/alloc/heapsimple.c \ 116 ${PATH_ROOT}/src/VBox/Runtime/common/checksum/crc32.cpp=>common/checksum/crc32.c \ 115 117 ${PATH_ROOT}/src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp=>common/err/RTErrConvertFromErrno.c \ 116 118 ${PATH_ROOT}/src/VBox/Runtime/common/err/RTErrConvertToErrno.cpp=>common/err/RTErrConvertToErrno.c \ … … 155 157 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformattype.cpp=>common/string/strformattype.c \ 156 158 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf.cpp=>common/string/strprintf.c \ 159 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf2.cpp=>common/string/strprintf2.c \ 157 160 ${PATH_ROOT}/src/VBox/Runtime/common/string/strtonum.cpp=>common/string/strtonum.c \ 158 161 ${PATH_ROOT}/src/VBox/Runtime/common/string/utf-8.cpp=>common/string/utf-8.c \
Note:
See TracChangeset
for help on using the changeset viewer.