+Fri Dec 5 16:03:53 CET 2008 Daniel Veillard <veillard@redhat.com>
+
+ * src/node_device_hal.c configure.in: fix a compilation problem
+ with old dbus versions
+
Thu Dec 5 10:10:41 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
* src/domain_conf.c: Disable a few more functions for proxy
CFLAGS="$CFLAGS $HAL_CFLAGS"
LDFLAGS="$LDFLAGS $HAL_LIBS"
AC_CHECK_FUNCS([libhal_get_all_devices],,[with_hal=no])
+ AC_CHECK_FUNCS([dbus_watch_get_unix_fd])
CFLAGS="$old_CFLAGS"
LDFLAGS="$old_LDFLAGS"
fi
void *data ATTRIBUTE_UNUSED)
{
int flags = 0;
+ int fd;
struct nodeDeviceWatchInfo *info;
if (VIR_ALLOC(info) < 0)
if (dbus_watch_get_enabled(watch))
flags = xlate_dbus_watch_flags(dbus_watch_get_flags(watch));
- info->watch = virEventAddHandle(dbus_watch_get_unix_fd(watch), flags,
- dbus_watch_callback, watch, NULL);
+#if HAVE_DBUS_WATCH_GET_UNIX_FD
+ fd = dbus_watch_get_unix_fd(watch);
+#else
+ fd = dbus_watch_get_fd(watch);
+#endif
+ info->watch = virEventAddHandle(fd, flags, dbus_watch_callback,
+ watch, NULL);
if (info->watch < 0) {
VIR_FREE(info);
return 0;