diff options
author | Max Kellermann <max@duempel.org> | 2009-11-10 21:14:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-11-10 21:14:22 +0100 |
commit | b722d3d7f365b106794a3f40435ab220098959c5 (patch) | |
tree | fc539d0aa20b0357547ced148cc88f18f648d7fe /configure.ac | |
parent | de57c21a3bec43bffb3fc6a85197f5489e18168f (diff) | |
download | mpd-b722d3d7f365b106794a3f40435ab220098959c5.tar.gz mpd-b722d3d7f365b106794a3f40435ab220098959c5.tar.xz mpd-b722d3d7f365b106794a3f40435ab220098959c5.zip |
configure.ac: require GLib 2.12
Drop the required GLib version from 2.16 to 2.12, because many current
systems still don't have GLib 2.16. This requires several new
compatibility functions in glib_compat.h.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 8366a0a55..f7d6d6e0e 100644 --- a/configure.ac +++ b/configure.ac @@ -141,8 +141,8 @@ dnl dnl mandatory libraries dnl -PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.16 gthread-2.0],, - [AC_MSG_ERROR([glib-2.16 is required])]) +PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.12 gthread-2.0],, + [AC_MSG_ERROR([GLib 2.12 is required])]) dnl |