comparison configure.ac @ 11067:2eca9ed49469

[gaim-migrate @ 13048] Modified configure.ac so that it rejects dbus builds with the dbus library older than 0.34 Added a simple object registration system to the dbus implementation so that it is possible to query object properties remotely (eg. give me property "name" of buddy with id = 5). committer: Tailor Script <tailor@pidgin.im>
author Piotr Zielinski <zielaj>
date Thu, 07 Jul 2005 15:43:48 +0000
parents df0241eb602c
children fdb8ba7a4857
comparison
equal deleted inserted replaced
11066:2507d20c3d0b 11067:2eca9ed49469
316 fi 316 fi
317 317
318 if test "x$enable_dbus" = "xyes"; then 318 if test "x$enable_dbus" = "xyes"; then
319 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.34 dbus-glib-1 >= 0.34], 319 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.34 dbus-glib-1 >= 0.34],
320 [ 320 [
321 AC_DEFINE(HAVE_DBUS, 1, [Define if we're using DBUS.])
322 AC_SUBST(DBUS_CFLAGS) 321 AC_SUBST(DBUS_CFLAGS)
323 AC_SUBST(DBUS_LIBS) 322 AC_SUBST(DBUS_LIBS)
324 echo "Building with DBUS support" 323 ],
324 [
325 enable_dbus=no
325 ]) 326 ])
327 fi
328
329 if test "x$enable_dbus" = "xyes"; then
330 AC_DEFINE(HAVE_DBUS, 1, [Define if we're using DBUS.])
331 echo "Building with DBUS support"
326 else 332 else
327 echo "Building without DBUS support" 333 echo "Building without DBUS support"
328 enable_dbus=no
329 fi 334 fi
330 335
331 AM_CONDITIONAL(ENABLE_DBUS, test "x$enable_dbus" = "xyes") 336 AM_CONDITIONAL(ENABLE_DBUS, test "x$enable_dbus" = "xyes")
332 337
333 338