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:
parent
94479ca40f
commit
8fa44d53ab
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user