]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
2005-03-20 Colin Walters <walters@verbum.org>
authorColin Walters <walters@verbum.org>
Mon, 21 Mar 2005 03:03:57 +0000 (03:03 +0000)
committerColin Walters <walters@verbum.org>
Mon, 21 Mar 2005 03:03:57 +0000 (03:03 +0000)
Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.

* configure.in: Require GTK+ 2.6.

ChangeLog
configure.in

index 47ca71cd9d7a97c98ed582a95f0ac8bf640c7613..9527ca88b698aeef6af7f32a803acd7e190ad28a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-20  Colin Walters  <walters@verbum.org>
+
+       Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
+
+       * configure.in: Require GTK+ 2.6.
+       
 2005-03-20  Colin Walters  <walters@verbum.org>
 
        * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
index 28a186cc526a3062e838173228781a27e5c28b0c..51f7bf6a61e3ac3c4f70e35c6be252c6e2548312 100644 (file)
@@ -853,8 +853,8 @@ if test x$have_glib = xno ; then
     AC_MSG_WARN([Can't use GTK+ since GLib not enabled])
     have_gtk=no
 else
-    PKG_CHECK_MODULES(DBUS_GTK, gtk+-2.0, have_gtk=yes, have_gtk=no)
-    PKG_CHECK_MODULES(DBUS_GTK_THREADS, gtk+-2.0 gthread-2.0, have_gtk_threads=yes, have_gtk_threads=no)
+    PKG_CHECK_MODULES(DBUS_GTK, gtk+-2.0 >= 2.6, have_gtk=yes, have_gtk=no)
+    PKG_CHECK_MODULES(DBUS_GTK_THREADS, gtk+-2.0 >= 2.6 gthread-2.0, have_gtk_threads=yes, have_gtk_threads=no)
 fi
 
 if test x$have_gtk = xno ; then