Changeset 22562 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 28, 2009 5:58:24 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51589
- Location:
- trunk/src/VBox/Main
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r22487 r22562 62 62 #include "ConsoleVRDPServer.h" 63 63 #include "VMMDev.h" 64 #include "Version.h"65 64 #include "package-generated.h" 66 65 … … 72 71 #include <VBox/com/array.h> 73 72 73 #include <iprt/asm.h> 74 #include <iprt/buildconfig.h> 75 #include <iprt/cpputils.h> 76 #include <iprt/dir.h> 77 #include <iprt/file.h> 78 #include <iprt/ldr.h> 79 #include <iprt/path.h> 80 #include <iprt/process.h> 74 81 #include <iprt/string.h> 75 #include <iprt/asm.h>76 #include <iprt/file.h>77 #include <iprt/path.h>78 #include <iprt/dir.h>79 #include <iprt/process.h>80 #include <iprt/ldr.h>81 #include <iprt/cpputils.h>82 82 #include <iprt/system.h> 83 83 … … 4607 4607 RTTimeSpecToString(RTTimeNow(&timeSpec), szTmp, sizeof(szTmp)); 4608 4608 RTLogRelLogger(loggerRelease, 0, ~0U, 4609 "VirtualBox %s r% d%s (%s %s) release log\n"4609 "VirtualBox %s r%u %s (%s %s) release log\n" 4610 4610 #ifdef VBOX_BLEEDING_EDGE 4611 4611 "EXPERIMENTAL build " VBOX_BLEEDING_EDGE "\n" 4612 4612 #endif 4613 4613 "Log opened %s\n", 4614 VBOX_VERSION_STRING, VBoxSVNRev(), VBOX_BUILD_TARGET,4614 VBOX_VERSION_STRING, RTBldCfgRevision(), VBOX_BUILD_TARGET, 4615 4615 __DATE__, __TIME__, szTmp); 4616 4616 … … 6682 6682 * exact build was used to produce the core. */ 6683 6683 static char saBuildID[40]; 6684 RTStrPrintf(saBuildID, sizeof(saBuildID), "%s%s%s%s VirtualBox %s r% d%s%s%s%s",6685 "BU", "IL", "DI", "D", VBOX_VERSION_STRING, VBoxSVNRev(), "BU", "IL", "DI", "D");6684 RTStrPrintf(saBuildID, sizeof(saBuildID), "%s%s%s%s VirtualBox %s r%u %s%s%s%s", 6685 "BU", "IL", "DI", "D", VBOX_VERSION_STRING, RTBldCfgRevision(), "BU", "IL", "DI", "D"); 6686 6686 6687 6687 ComObjPtr<Console> console = task->mConsole; -
trunk/src/VBox/Main/ConsoleImpl2.cpp
r22560 r22562 30 30 #include "ConsoleImpl.h" 31 31 #include "DisplayImpl.h" 32 #include "Version.h"33 32 #include "VMMDev.h" 34 33 … … 38 37 #include "Logging.h" 39 38 39 #include <iprt/buildconfig.h> 40 40 #include <iprt/string.h> 41 41 #include <iprt/path.h> … … 44 44 #if 0 /* enable to play with lots of memory. */ 45 45 # include <iprt/env.h> 46 # include <iprt/string.h>47 46 #endif 48 47 … … 2890 2889 /* Set the VBox SVN revision as a guest property */ 2891 2890 configSetProperty(pConsole->mVMMDev, "/VirtualBox/HostInfo/VBoxRev", 2892 VBoxSVNRevString(), "TRANSIENT, RDONLYGUEST");2891 RTBldCfgRevisionStr(), "TRANSIENT, RDONLYGUEST"); 2893 2892 /* Initialize the remote execution properties for ready-on access by 2894 2893 * the guest */ -
trunk/src/VBox/Main/Makefile.kmk
r22442 r22562 313 313 SystemPropertiesImpl.cpp \ 314 314 BIOSSettingsImpl.cpp \ 315 Version.cpp \316 315 HostPower.cpp \ 317 316 $(if $(VBOX_WITH_VRDP),VRDPServerImpl.cpp,) \ … … 585 584 AutoLock.cpp \ 586 585 VBoxDll.cpp \ 587 Version.cpp \588 586 USBDeviceImpl.cpp \ 589 587 RemoteUSBDeviceImpl.cpp \ … … 642 640 643 641 644 Version.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)645 Version.cpp_DEPS = $(VBOX_SVN_REV_KMK)646 647 642 win/VBoxC.rc_DEPS = $(PATH_VBoxC)/VBoxC.rgs $(PATH_VBoxCOM)/VirtualBox.tlb 648 643 VBoxC_CLEAN.win += $(PATH_VBoxC)/VBoxC.rgs -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r22304 r22562 21 21 */ 22 22 23 #include <iprt/buildconfig.h> 24 #include <iprt/cpputils.h> 25 #include <iprt/dir.h> 26 #include <iprt/env.h> 27 #include <iprt/file.h> 23 28 #include <iprt/path.h> 24 #include <iprt/dir.h> 25 #include <iprt/file.h> 29 #include <iprt/process.h> 26 30 #include <iprt/string.h> 27 #include <iprt/uuid.h>28 31 #include <iprt/stream.h> 29 32 #include <iprt/thread.h> 30 #include <iprt/process.h> 31 #include <iprt/env.h> 32 #include <iprt/cpputils.h> 33 #include <iprt/uuid.h> 33 34 #include <iprt/xml_cpp.h> 34 35 … … 62 63 #include "SystemPropertiesImpl.h" 63 64 #include "GuestOSTypeImpl.h" 64 #include "Version.h"65 65 #include "DHCPServerRunner.h" 66 66 #include "DHCPServerImpl.h" … … 141 141 if (sVersion.isNull()) 142 142 sVersion = VBOX_VERSION_STRING; 143 sRevision = VBoxSVNRev();143 sRevision = RTBldCfgRevision(); 144 144 if (sPackageType.isNull()) 145 145 sPackageType = VBOX_PACKAGE_STRING;
Note:
See TracChangeset
for help on using the changeset viewer.