From 888a07c136d2831a927ee259540e189fc510a64f Mon Sep 17 00:00:00 2001 From: "wr@rosenauer.org" Date: Thu, 19 Apr 2007 04:52:40 -0700 Subject: [PATCH] Bug 377992 - dbus build fails with some dbus versions, r=luser --- configure.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 0c1d29add7e..07d222cf72e 100644 --- a/configure.in +++ b/configure.in @@ -127,6 +127,7 @@ GNOMEUI_VERSION=2.2.0 GCONF_VERSION=1.2.1 LIBGNOME_VERSION=2.0 STARTUP_NOTIFICATION_VERSION=0.8 +DBUS_VERSION=0.60 MSMANIFEST_TOOL= @@ -5206,13 +5207,13 @@ then if test "$MOZ_ENABLE_DBUS" then - PKG_CHECK_MODULES(MOZ_DBUS_GLIB, dbus-glib-1, + PKG_CHECK_MODULES(MOZ_DBUS_GLIB, dbus-glib-1 >= $DBUS_VERSION, [ MOZ_ENABLE_DBUS=1 ],[ if test "$MOZ_ENABLE_DBUS" = "force" then - AC_MSG_ERROR([* * * Could not find dbus-glib-1]) + AC_MSG_ERROR([* * * Could not find dbus-glib-1 >= $DBUS_VERSION]) fi MOZ_ENABLE_DBUS= ])