summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-12 22:27:36 +0100
committerwm4 <wm4@nowhere>2013-11-12 23:38:52 +0100
commit5388a0cd4062ba24f5382f025552422fb6430906 (patch)
treebfe680125552b381f5cd3e19a95b991a6b4f9207 /configure
parent9127aad2fdca0a64f1014c712e19252c67112c47 (diff)
downloadmpv-5388a0cd4062ba24f5382f025552422fb6430906.tar.bz2
mpv-5388a0cd4062ba24f5382f025552422fb6430906.tar.xz
ad_mpg123: reduce ifdeffery
Drop support for anything before 1.14.0.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 1 insertions, 3 deletions
diff --git a/configure b/configure
index 9905394f6a..ac41fc29f8 100755
--- a/configure
+++ b/configure
@@ -2615,13 +2615,11 @@ fi
echores "$_zlib"
-# Any version of libmpg123 that knows MPG123_RESYNC_LIMIT shall be fine.
-# That is, 1.2.0 onwards. Recommened is 1.14 onwards, though.
echocheck "mpg123 support"
def_mpg123='#define HAVE_MPG123 0'
if test "$_mpg123" = auto; then
_mpg123=no
- pkg_config_add 'libmpg123 >= 1.2.0' && _mpg123=yes
+ pkg_config_add 'libmpg123 >= 1.14.0' && _mpg123=yes
fi
if test "$_mpg123" = yes ; then
def_mpg123='#define HAVE_MPG123 1'