diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index bfa21b9d4..2efff82a6 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 @@ -322,7 +322,7 @@ AC_ARG_ENABLE(mms, [enable the MMS protocol with libmms]),, [enable_mms=auto]) -MPD_AUTO_PKG(mms, MMS, [libmms], +MPD_AUTO_PKG(mms, MMS, [libmms >= 0.4], [libmms mms:// protocol support], [libmms not found]) if test x$enable_mms = xyes; then AC_DEFINE(ENABLE_MMS, 1, @@ -358,7 +358,7 @@ AC_ARG_ENABLE(zip, [enable zip archive support (default: disabled)]),, enable_zip=no) -MPD_AUTO_PKG(zip, ZZIP, [zziplib], +MPD_AUTO_PKG(zip, ZZIP, [zziplib >= 0.13], [libzzip archive library], [libzzip not found]) AM_CONDITIONAL(HAVE_ZIP, test x$enable_zip = xyes) @@ -410,8 +410,8 @@ dnl AC_ARG_ENABLE(audiofile, AS_HELP_STRING([--enable-audiofile], - [enable audiofile support, disables wave support]),, - enable_audiofile=yes) + [enable audiofile support (WAV and others)]),, + enable_audiofile=auto) MPD_AUTO_PKG(audiofile, AUDIOFILE, [audiofile >= 0.1.7], [audiofile decoder plugin], [libaudiofile not found]) |