Changeset 18926 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 16, 2009 8:33:09 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 45992
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/vbox-dbus.h
r16178 r18926 26 26 #include <stdint.h> 27 27 28 #define VBOX_DBUS_1_2_LIB "libdbus-1.so.2" /* This should be compatible */29 28 #define VBOX_DBUS_1_3_LIB "libdbus-1.so.3" 30 29 -
trunk/src/VBox/Main/linux/vbox-dbus.cpp
r16178 r18926 77 77 78 78 LogFlowFunc(("\n")); 79 rc = RTLdrLoad(VBOX_DBUS_1_ 2_LIB, &hLib);79 rc = RTLdrLoad(VBOX_DBUS_1_3_LIB, &hLib); 80 80 if (RT_FAILURE(rc)) 81 rc = RTLdrLoad(VBOX_DBUS_1_3_LIB, &hLib); 82 if (RT_FAILURE(rc)) 83 LogRelFunc(("Failed to load library %s or %s\n", 84 VBOX_DBUS_1_2_LIB, VBOX_DBUS_1_3_LIB)); 81 LogRelFunc(("Failed to load library %s\n", VBOX_DBUS_1_3_LIB)); 85 82 for (unsigned i = 0; RT_SUCCESS(rc) && SharedFuncs[i].name != NULL; ++i) 86 83 rc = RTLdrGetSymbol(hLib, SharedFuncs[i].name, (void**)SharedFuncs[i].fn);
Note:
See TracChangeset
for help on using the changeset viewer.