Changeset 91789 in vbox for trunk/src/VBox/Additions/common/VBoxGuest/linux
- Timestamp:
- Oct 17, 2021 6:16:11 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147575
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/linux/Makefile
r90829 r91789 83 83 common/log/logcom.o \ 84 84 common/log/logformat.o \ 85 common/log/RTLogCreateEx.o \ 85 86 common/misc/RTAssertMsg1Weak.o \ 86 87 common/misc/RTAssertMsg2.o \ … … 104 105 common/string/stringalloc.o \ 105 106 common/string/strformat.o \ 107 common/string/RTStrFormat.o \ 106 108 common/string/strformatnum.o \ 107 109 common/string/strformatrt.o \ 108 110 common/string/strformattype.o \ 109 111 common/string/strprintf.o \ 112 common/string/strprintf-ellipsis.o \ 110 113 common/string/strprintf2.o \ 114 common/string/strprintf2-ellipsis.o \ 111 115 common/string/strtonum.o \ 112 116 common/string/utf-8.o \ -
trunk/src/VBox/Additions/common/VBoxGuest/linux/combined-agnostic.c
r90829 r91789 70 70 #include "common/log/logformat.c" 71 71 #undef LOG_GROUP 72 #include "common/log/RTLogCreateEx.c" 73 #undef LOG_GROUP 72 74 #include "common/misc/RTAssertMsg1Weak.c" 73 75 #undef LOG_GROUP … … 112 114 #include "common/string/strformat.c" 113 115 #undef LOG_GROUP 116 #include "common/string/RTStrFormat.c" 117 #undef LOG_GROUP 114 118 #include "common/string/strformatnum.c" 115 119 #undef LOG_GROUP … … 118 122 #include "common/string/strprintf.c" 119 123 #undef LOG_GROUP 124 #include "common/string/strprintf-ellipsis.c" 125 #undef LOG_GROUP 120 126 #include "common/string/strprintf2.c" 127 #undef LOG_GROUP 128 #include "common/string/strprintf2-ellipsis.c" 121 129 #undef LOG_GROUP 122 130 #include "common/string/strtonum.c" -
trunk/src/VBox/Additions/common/VBoxGuest/linux/files_vboxguest
r90829 r91789 124 124 ${PATH_ROOT}/src/VBox/Runtime/common/log/logformat.cpp=>common/log/logformat.c \ 125 125 ${PATH_ROOT}/src/VBox/Runtime/common/log/logcom.cpp=>common/log/logcom.c \ 126 ${PATH_ROOT}/src/VBox/Runtime/common/log/RTLogCreateEx.cpp=>common/log/RTLogCreateEx.c \ 126 127 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/divdi3.c=>common/math/gcc/divdi3.c \ 127 128 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/divmoddi4.c=>common/math/gcc/divmoddi4.c \ … … 153 154 ${PATH_ROOT}/src/VBox/Runtime/common/string/stringalloc.cpp=>common/string/stringalloc.c \ 154 155 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformat.cpp=>common/string/strformat.c \ 156 ${PATH_ROOT}/src/VBox/Runtime/common/string/RTStrFormat.cpp=>common/string/RTStrFormat.c \ 155 157 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatnum.cpp=>common/string/strformatnum.c \ 156 158 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatrt.cpp=>common/string/strformatrt.c \ 157 159 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformattype.cpp=>common/string/strformattype.c \ 158 160 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf.cpp=>common/string/strprintf.c \ 161 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf-ellipsis.cpp=>common/string/strprintf-ellipsis.c \ 159 162 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf2.cpp=>common/string/strprintf2.c \ 163 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf2-ellipsis.cpp=>common/string/strprintf2-ellipsis.c \ 160 164 ${PATH_ROOT}/src/VBox/Runtime/common/string/strtonum.cpp=>common/string/strtonum.c \ 161 165 ${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.