Changeset 36190 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Mar 7, 2011 4:28:50 PM (14 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/freebsd/files_vboxguest
r35430 r36190 35 35 ${PATH_ROOT}/include/iprt/lockvalidator.h=>include/iprt/lockvalidator.h \ 36 36 ${PATH_ROOT}/include/iprt/log.h=>include/iprt/log.h \ 37 ${PATH_ROOT}/include/iprt/mangling.h=>include/iprt/mangling.h \ 37 38 ${PATH_ROOT}/include/iprt/mem.h=>include/iprt/mem.h \ 38 39 ${PATH_ROOT}/include/iprt/memobj.h=>include/iprt/memobj.h \ … … 70 71 ${PATH_ROOT}/include/VBox/VBoxGuest2.h=>include/VBox/VBoxGuest2.h \ 71 72 ${PATH_ROOT}/include/VBox/VBoxGuestLib.h=>include/VBox/VBoxGuestLib.h \ 73 ${PATH_ROOT}/include/VBox/VBoxGuestMangling.h=>include/VBox/VBoxGuestMangling.h \ 72 74 ${PATH_ROOT}/include/VBox/version.h=>include/VBox/version.h \ 73 75 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp=>VBoxGuest.c \ -
trunk/src/VBox/Additions/common/VBoxGuest/linux/Makefile
r33184 r36190 271 271 272 272 # build defs 273 EXTRA_CFLAGS += $(INCL) $(KFLAGS) $(KDEBUG)273 EXTRA_CFLAGS += -include $(KBUILD_EXTMOD)/include/VBox/VBoxGuestMangling.h $(INCL) $(KFLAGS) $(KDEBUG) 274 274 275 275 all: $(MODULE) … … 288 288 289 289 endif # eq($(MAKECMDGOALS),clean) 290 291 check: $(MODULE) 292 @if ! readelf -p __ksymtab_strings vboxguest.ko | grep -E "\[.*\] *(RT|g_..*RT.*)"; then \ 293 echo "All exported IPRT symbols are properly renamed!"; \ 294 else \ 295 echo "error: Some exported IPRT symbols was not properly renamed! See above." >&2; \ 296 false; \ 297 fi 290 298 291 299 clean: -
trunk/src/VBox/Additions/common/VBoxGuest/linux/files_vboxguest
r33033 r36190 35 35 ${PATH_ROOT}/include/iprt/lockvalidator.h=>include/iprt/lockvalidator.h \ 36 36 ${PATH_ROOT}/include/iprt/log.h=>include/iprt/log.h \ 37 ${PATH_ROOT}/include/iprt/mangling.h=>include/iprt/mangling.h \ 37 38 ${PATH_ROOT}/include/iprt/mem.h=>include/iprt/mem.h \ 38 39 ${PATH_ROOT}/include/iprt/memobj.h=>include/iprt/memobj.h \ … … 63 64 ${PATH_ROOT}/include/VBox/VBoxGuest2.h=>include/VBox/VBoxGuest2.h \ 64 65 ${PATH_ROOT}/include/VBox/VBoxGuestLib.h=>include/VBox/VBoxGuestLib.h \ 66 ${PATH_ROOT}/include/VBox/VBoxGuestMangling.h=>include/VBox/VBoxGuestMangling.h \ 65 67 ${PATH_ROOT}/include/VBox/version.h=>include/VBox/version.h \ 66 68 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp=>VBoxGuest.c \
Note:
See TracChangeset
for help on using the changeset viewer.