Changeset 22562 in vbox for trunk/src/VBox/Additions/common/VBoxControl
- Timestamp:
- Aug 28, 2009 5:58:24 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51589
- Location:
- trunk/src/VBox/Additions/common/VBoxControl
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxControl/Makefile.kmk
r14220 r22562 39 39 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS VBOX_WITH_HGCM,) 40 40 VBoxControl_SOURCES = \ 41 VBoxControl.cpp \ 42 VBoxControlSVN.cpp 41 VBoxControl.cpp 43 42 VBoxControl_SOURCES.win = \ 44 43 VBoxControl.rc … … 48 47 $(VBOX_LIB_IPRT_GUEST_R3) 49 48 50 # VBoxControlSVN.cpp uses VBOX_SVN_REV.51 VBoxControlSVN.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)52 VBoxControlSVN.cpp_DEPS = $(VBOX_SVN_REV_KMK)53 54 49 include $(KBUILD_PATH)/subfooter.kmk 55 50 -
trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp
r21218 r22562 1 /* *$Id$ */1 /* $Id$ */ 2 2 /** @file 3 3 * VBoxControl - Guest Additions Command Line Management Interface. … … 25 25 #include <iprt/alloca.h> 26 26 #include <iprt/autores.h> 27 #include <iprt/buildconfig.h> 27 28 #include <iprt/initterm.h> 28 29 #include <iprt/mem.h> … … 39 40 # include <VBox/HostServices/GuestPropertySvc.h> 40 41 #endif 41 #include "VBoxControl.h"42 42 43 43 /******************************************************************************* … … 1312 1312 { 1313 1313 /* Print version number, and do nothing else. */ 1314 RTPrintf("%sr% d\n", VBOX_VERSION_STRING, VBoxSVNRev());1314 RTPrintf("%sr%u\n", VBOX_VERSION_STRING, RTBldCfgRevision()); 1315 1315 onlyinfo = true; 1316 1316 showlogo = false; -
trunk/src/VBox/Additions/common/VBoxControl/testcase/Makefile.kmk
r14233 r22562 31 31 tstVBoxControl_TEMPLATE = VBOXR3TSTEXE 32 32 tstVBoxControl_DEFS = VBOX_CONTROL_TEST 33 tstVBoxControl_SOURCES = tstVBoxControl.cpp ../VBoxControl.cpp ../VBoxControlSVN.cpp33 tstVBoxControl_SOURCES = tstVBoxControl.cpp ../VBoxControl.cpp 34 34 tstVBoxControl_LIBS = $(LIB_RUNTIME) 35 35 tstVBoxControl_DEFS += \ 36 36 $(if $(VBOX_WITH_GUEST_PROPS),VBOX_WITH_GUEST_PROPS VBOX_WITH_HGCM,) 37 38 # VBoxControlSVN.cpp uses VBOX_SVN_REV.39 tstVBoxControl_DEFS += VBOX_SVN_REV=$(VBOX_SVN_REV)40 tstVBoxControl_DEPS = $(VBOX_SVN_REV_KMK)41 37 42 38 endif # VBOX_WITH_TESTCASES -
trunk/src/VBox/Additions/common/VBoxControl/testcase/tstVBoxControl.cpp
r21218 r22562 1 /* *$Id$ */1 /* $Id$ */ 2 2 /** @file 3 3 * VBoxControl - Guest Additions Command Line Management Interface, test case
Note:
See TracChangeset
for help on using the changeset viewer.