configure.ac: require GLib 2.6

We're using GLib macros which were introduced in GLib 2.6, like
G_GNUC_MALLOC.  Let's just drop support for GLib versions older than
2.6 instead of adding more complicated compatibility hacks.
This commit is contained in:
Max Kellermann 2009-03-27 18:04:34 +01:00
parent 94479ca40f
commit 8fa44d53ab

View File

@ -108,8 +108,8 @@ dnl
dnl mandatory libraries
dnl
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.4 gthread-2.0],,
[AC_MSG_ERROR([glib-2.4 is required])])
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.6 gthread-2.0],,
[AC_MSG_ERROR([glib-2.6 is required])])
dnl