Changeset 23819 in vbox
- Timestamp:
- Oct 16, 2009 12:24:52 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53568
- Location:
- trunk/src/VBox
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r23452 r23819 58 58 seamless-x11.cpp \ 59 59 thread.cpp \ 60 display.cpp 60 display.cpp \ 61 hostversion.cpp 61 62 VBoxClient_LIBS += \ 62 63 Xext Xmu -
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r21922 r23819 46 46 extern Service *GetSeamlessService(); 47 47 extern Service *GetDisplayService(); 48 extern Service *GetHostVersionService(); 48 49 49 50 extern void CleanUp(); -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r21940 r23819 136 136 RTPrintf("Start the VirtualBox X Window System guest services.\n\n"); 137 137 RTPrintf("Options:\n"); 138 RTPrintf(" --checkhostversion checks for a new VirtualBox host version\n"); 138 139 RTPrintf(" --clipboard start the shared clipboard service\n"); 139 140 RTPrintf(" --display start the display management service\n"); … … 190 191 fSuccess = false; 191 192 } 193 else if (!strcmp(argv[i], "--checkhostversion")) 194 { 195 if (g_pService == NULL) 196 g_pService = VBoxClient::GetHostVersionService(); 197 else 198 fSuccess = false; 199 } 192 200 else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) 193 201 { … … 235 243 } 236 244 /* Initialise the guest library. */ 237 if (RT_FAILURE(VbglR3InitUser()))245 /* if (RT_FAILURE(VbglR3InitUser())) 238 246 { 239 247 RTPrintf("Failed to connect to the VirtualBox kernel service\n"); 240 248 Log(("Failed to connect to the VirtualBox kernel service\n")); 241 249 return 1; 242 } 250 }*/ 243 251 if (g_pszPidFile && RT_FAILURE(VbglR3PidFile(g_pszPidFile, &g_hPidFile))) 244 252 { -
trunk/src/VBox/Main/Makefile.kmk
r23801 r23819 44 44 # I'm Evil! Dr. Evil. 45 45 include $(KBUILD_PATH)/tools/VCC70.kmk 46 include $(KBUILD_PATH)/sdks/WINPSDK.kmk 46 include $(KBUILD_PATH)/sdks/WINPSDK.kmk/ 47 47 endif #!VBOX_ONLY_SDK 48 48 … … 336 336 linux/HostHardwareLinux.cpp 337 337 338 ifdef VBOX_WITH_DBUS339 VBoxSVC_SOURCES.linux += linux/vbox-dbus.cpp340 endif341 342 338 VBoxSVC_SOURCES.solaris = \ 343 339 linux/vbox-libhal.cpp \ -
trunk/src/VBox/Main/linux/HostHardwareLinux.cpp
r23563 r23819 31 31 32 32 #include <VBox/log.h> 33 # ifdef VBOX_WITH_DBUS 34 # include <VBox/dbus.h> 35 # endif 33 36 34 37 #include <iprt/dir.h> … … 54 57 # include <linux/fd.h> 55 58 # include <linux/major.h> 56 # ifdef VBOX_WITH_DBUS57 # include <vbox-dbus.h>58 # endif59 59 # include <errno.h> 60 60 # include <scsi/scsi.h> … … 1025 1025 #ifdef VBOX_WITH_DBUS 1026 1026 if ( RT_SUCCESS(rc) 1027 && RT_SUCCESS( VBoxLoadDBusLib())1027 && RT_SUCCESS(RTDBusLoadLib()) 1028 1028 && (!success || testing())) 1029 1029 rc = getUSBDeviceInfoFromHal(&mDeviceList, &halSuccess); … … 1070 1070 1071 1071 mContext = new Context; 1072 if (RT_SUCCESS( VBoxLoadDBusLib()))1072 if (RT_SUCCESS(RTDBusLoadLib())) 1073 1073 { 1074 1074 for (unsigned i = 0; RT_SUCCESS(rc) && i < 5 && !mContext->mConnection; ++i) -
trunk/src/VBox/Main/testcase/Makefile.kmk
r23522 r23819 125 125 tstHostHardwareLinux_SOURCES = \ 126 126 tstHostHardwareLinux.cpp \ 127 ../linux/HostHardwareLinux.cpp \ 128 ../linux/vbox-dbus.cpp 127 ../linux/HostHardwareLinux.cpp 129 128 tstHostHardwareLinux_INCS = . ../include 130 129 tstHostHardwareLinux_DEFS = \ -
trunk/src/VBox/Runtime/Makefile.kmk
r23507 r23819 372 372 common/err/errmsgxpcom.cpp 373 373 endif 374 ifeq ($(KBUILD_TARGET),linux) 375 RuntimeR3_SOURCES += \ 376 $(if $(VBOX_WITH_DBUS),VBox/dbus.cpp,) 377 endif 374 378 375 379 RuntimeR3_SOURCES.win = \
Note:
See TracChangeset
for help on using the changeset viewer.