Changeset 23845 in vbox for trunk/src/VBox/Main
- Timestamp:
- Oct 19, 2009 8:49:10 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 53607
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Makefile.kmk
r23821 r23845 336 336 linux/HostHardwareLinux.cpp 337 337 338 ifdef VBOX_WITH_DBUS 339 VBoxSVC_SOURCES.linux += linux/vbox-dbus.cpp 340 endif 341 338 342 VBoxSVC_SOURCES.solaris = \ 339 343 linux/vbox-libhal.cpp \ -
trunk/src/VBox/Main/linux/HostHardwareLinux.cpp
r23819 r23845 31 31 32 32 #include <VBox/log.h> 33 # ifdef VBOX_WITH_DBUS34 # include <VBox/dbus.h>35 # endif36 33 37 34 #include <iprt/dir.h> … … 57 54 # include <linux/fd.h> 58 55 # include <linux/major.h> 56 # ifdef VBOX_WITH_DBUS 57 # include <vbox-dbus.h> 58 # endif 59 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( RTDBusLoadLib())1027 && RT_SUCCESS(VBoxLoadDBusLib()) 1028 1028 && (!success || testing())) 1029 1029 rc = getUSBDeviceInfoFromHal(&mDeviceList, &halSuccess); … … 1070 1070 1071 1071 mContext = new Context; 1072 if (RT_SUCCESS( RTDBusLoadLib()))1072 if (RT_SUCCESS(VBoxLoadDBusLib())) 1073 1073 { 1074 1074 for (unsigned i = 0; RT_SUCCESS(rc) && i < 5 && !mContext->mConnection; ++i) -
trunk/src/VBox/Main/testcase/Makefile.kmk
r23819 r23845 125 125 tstHostHardwareLinux_SOURCES = \ 126 126 tstHostHardwareLinux.cpp \ 127 ../linux/HostHardwareLinux.cpp 127 ../linux/HostHardwareLinux.cpp \ 128 ../linux/vbox-dbus.cpp 128 129 tstHostHardwareLinux_INCS = . ../include 129 130 tstHostHardwareLinux_DEFS = \
Note:
See TracChangeset
for help on using the changeset viewer.