Commit 8fa44d53 authored by Max Kellermann's avatar Max Kellermann

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.
parent 94479ca4
...@@ -108,8 +108,8 @@ dnl ...@@ -108,8 +108,8 @@ dnl
dnl mandatory libraries dnl mandatory libraries
dnl dnl
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.4 gthread-2.0],, PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.6 gthread-2.0],,
[AC_MSG_ERROR([glib-2.4 is required])]) [AC_MSG_ERROR([glib-2.6 is required])])
dnl dnl
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment