# HG changeset patch # User Andrew John Hughes # Date 1333733337 -3600 # Node ID 5d772a4e7dd7fb8e0282dce36f6457c9b442fc78 # Parent 8ea793eccbd1f01bec20e8a261fca9af9658ffa8 Support glib >= 2.32. 2012-04-06 Andrew John Hughes * acinclude.m4: (IT_CHECK_FOR_GTK): Work with glib >= 2.32 by explicitly asking for gthread. diff -r 8ea793eccbd1 -r 5d772a4e7dd7 ChangeLog --- a/ChangeLog Tue Apr 03 01:16:08 2012 +0100 +++ b/ChangeLog Fri Apr 06 18:28:57 2012 +0100 @@ -1,3 +1,9 @@ +2012-04-06 Andrew John Hughes + + * acinclude.m4: + (IT_CHECK_FOR_GTK): Work with glib >= 2.32 + by explicitly asking for gthread. + 2012-03-29 Andrew John Hughes * Makefile.am: diff -r 8ea793eccbd1 -r 5d772a4e7dd7 acinclude.m4 --- a/acinclude.m4 Tue Apr 03 01:16:08 2012 +0100 +++ b/acinclude.m4 Fri Apr 06 18:28:57 2012 +0100 @@ -2011,7 +2011,7 @@ AC_MSG_RESULT(${ENABLE_SYSTEM_GTK}) if test x"${ENABLE_SYSTEM_GTK}" = "xyes"; then dnl Check for Gtk+ headers and libraries. - PKG_CHECK_MODULES(GTK, gtk+-2.0,[GTK_FOUND=yes],[GTK_FOUND=no]) + PKG_CHECK_MODULES(GTK, gtk+-2.0 gthread-2.0,[GTK_FOUND=yes],[GTK_FOUND=no]) if test "x${GTK_FOUND}" = xno then AC_MSG_ERROR([Could not find Gtk+; install Gtk+ or build with --disable-system-gtk to use the in-tree headers.])