Commit c4b1251d authored by Max Kellermann's avatar Max Kellermann

configure.ac: require libaudiofile 0.3 due to API breakage

Prior to version 0.3, the "length" callback returned a "long" instead of AFfileoffset. Now that this API bug fix is a few years old, let's drop 0.2 support for good.
parent 01891f88
...@@ -4,6 +4,7 @@ ver 0.18.2 (2013/??/??) ...@@ -4,6 +4,7 @@ ver 0.18.2 (2013/??/??)
* playlist: * playlist:
- pls: fix reversed song order - pls: fix reversed song order
* decoder: * decoder:
- audiofile: require libaudiofile 0.3 due to API breakage
- dsf: enable DSD128 - dsf: enable DSD128
* fix build failures due to missing includes * fix build failures due to missing includes
* fix big-endian support * fix big-endian support
......
...@@ -838,7 +838,7 @@ fi ...@@ -838,7 +838,7 @@ fi
AM_CONDITIONAL(HAVE_ADPLUG, test x$enable_adplug = xyes) AM_CONDITIONAL(HAVE_ADPLUG, test x$enable_adplug = xyes)
dnl -------------------------------- audiofile -------------------------------- dnl -------------------------------- audiofile --------------------------------
MPD_AUTO_PKG(audiofile, AUDIOFILE, [audiofile >= 0.1.7], MPD_AUTO_PKG(audiofile, AUDIOFILE, [audiofile >= 0.3],
[audiofile decoder plugin], [libaudiofile not found]) [audiofile decoder plugin], [libaudiofile not found])
AM_CONDITIONAL(HAVE_AUDIOFILE, test x$enable_audiofile = xyes) AM_CONDITIONAL(HAVE_AUDIOFILE, test x$enable_audiofile = xyes)
if test x$enable_audiofile = xyes; then if test x$enable_audiofile = xyes; then
......
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