grep -in "checking for GLIB" mpd/*
Example :
Code:
mpd/config.log:688:configure:6615: checking for GLIB
mpd/configure:6615:{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GLIB" >&5
mpd/configure:6616:$as_echo_n "checking for GLIB... " >&6; }
.. Meaning that you can look into the 'configure' script about line 6615 and read
that mpd uses PKG_CONFIG. Checks for for : /usr/lib/pkgconfig/glib-2.0.pc
Also says: "pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0 >= 2.12"
I.e. : glib 2.12 or later : GLIB 2.24 is OK.
..